[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] HELP! .htaccess won't run on rewritten subdomain



Set 'AllowOverride All'  in /etc/httpd/conf/access.conf 
to enable more .htaccess function on raq4.

-----------

You shouls set the "Allow Override All" option in access.conf
then you need to restart the server with the command:

/etc/rc.d/init.d/httpd  restart

--------

Look for this in /etc/httpd/conf/access.conf

<Directory /home/sites/>

The line below is standaard.
Options Indexes FollowSymLinks Includes MultiViews

 for our servers I changed it to
Options FollowSymLinks Includes MultiViews

# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"

Standaard line
AllowOverride AuthConfig Indexes Limit

which we changed to read:

AllowOverride All

--------------