Jump to content

[SOLVED] .httacess


phpidiot5

Recommended Posts

Not really enough information given for thorough answer...

 

Try the following to get .htaccess working

 

http://httpd.apache.org/docs/2.0/howto/htaccess.html

 

Ensure you have an AllowOverride statement (if in doubt set AllowOverride All in the server config (httpd.conf) but ensure it apples to the area you're trying to secure - use a <Directory ...> or <Location ...> statement to wrap this)

 

http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride

 

When this directive is set to None, then .htaccess files are completely ignored. In this case, the server will not even attempt to read .htaccess files in the filesystem.

 

When this directive is set to All, then any directive which has the .htaccess Context is allowed in .htaccess files.

 

Then, once working try the following for authentication ...

http://httpd.apache.org/docs/2.0/mod/core.html#authtype  (authname, require, etc...)

http://httpd.apache.org/docs/2.0/howto/htaccess.html#auth - authentication example

 

If you own the server and have access to the main server config this would be better done in the main server config file rather than using .htaccess.  http://httpd.apache.org/docs/2.0/howto/htaccess.html#when - when not to use .htaccess files

Link to comment
https://forums.phpfreaks.com/topic/85288-solved-httacess/#findComment-436485
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.