Hi all,
I'm having some trouble with mod_rewrite: my local site is showing me the 
message "URL rewriting is not properly configured on your server".

I'm using
- CakePHP 2.2.2
- Apache/2.2.22 (Ubuntu) 
- PHP Version 5.3.10-1ubuntu3.4 

These are my files:

*/var/www/friendlistapp/.htaccess (original)*
<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule    ^$ app/webroot/    [L]
   RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>

*/etc/apache2/sites-enabled/fla.local
*
<VirtualHost fla.local:80>
    ServerName fla.local
    DocumentRoot /var/www/friendlistapp
    # Other directives here
    <Directory />
        Options FollowSymLinks
        AllowOverride All
    </Directory>
    <Directory /var/www/friendlistapp>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Order Allow,Deny
        Allow from all
    </Directory>
</VirtualHost>

Although I'm pretty sure this is the right .conf file, I converted every 
"AllowOverride" in every apache file to "All".

I can find "mod_rewrite" in "Loaded Modules" in phpinfo()...

CakePHP is still raising that error...

What can I check again?


Thanks in advance
Lorenzo

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.


Reply via email to