Snow Leopard .htaccess issue
Posted
by Joe.Cianflone
on Super User
See other posts from Super User
or by Joe.Cianflone
Published on 2009-10-09T20:31:10Z
Indexed on
2010/03/18
7:41 UTC
Read the original article
Hit count: 446
snow-leopard
|apache
Hello, I'm running into an issue on Snow Leopard. I am just using the standard Apache2 that came with it but it doesn't seem to want to use my .htaccess file. Here is the appropriate part of my httpd.conf file:
<Directory />
Options FollowSymLinks
AllowOverride All AuthConfig
Order deny,allow
Deny from all
</Directory>
And here is my .htaccess file:
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
I'm sure I'm doing something stupid, but at this point, I just cant see it!
All it's doing is allowing me to not have the index.php file, this worked on Leopard and isn't working in Snow Leopard. What am I missing?
Thanks Joe C
© Super User or respective owner