[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] HELP! .htaccess won't run on rewritten subdomain
- Subject: Re: [cobalt-users] HELP! .htaccess won't run on rewritten subdomain
- From: Nucharin Jansen <support@xxxxxxxxxxxx>
- Date: Tue Dec 3 20:21:02 2002
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
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
--------------