Forum Moderators: phranque
I am wondering if I can set AllowOverride to something else other than All. I tried AllowOverride Indexes but it did not take.
The hosting provider won't allow us to set the httpd AllowOverride to All so I am trying to find an alternative setting.
thx for any input..
AllowOverride Indexes
and it didn't work?
Seems like that should have worked
[httpd.apache.org...]
Shows that as valid and exactly what you are looking for.
In my htaccess file I have
IndexIgnore *
<Directory />
Options FollowSymLinks
AllowOverride Indexes
</Directory>
Putting this in htaccess throws an Internal Server Error in the browser. The apache error log file says
".htaccess: <Directory not allowed here"
Removing the Directory directive and setting AllowOverride All in httpd works, but again I will not have access to httpd when the site goes live so I need something to work in htaccess.
Jim