Hey everyone,
I was wondering if someone actually tried and removed the 5 .htaccess
used in the framework and place an equivalent rules in the httpd.conf
instead? I'm having issues since there's a combination and as a
result, I get a lot of internal 500 errors since I'm not stopping the
redirect.
Here's what I have in the httpd.conf so far:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /app/webroot/index.php?url=$1 [QSA,L]
</IfModule>
I was wondering if anyone would be able to give me a hand in this.
Thanks,
Tam
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---