Question
cakePHP URL rewriting not working in Ubuntu
I recently installed a new droplet and followed the tutorial on the site for the installation of cakePHP on Ubuntu. I have confirmed that i have the url rewrite module in apache2 enabled (shows as shared in terminal), but when I go to my site I get a warning that URL rewriting is not properly configured. Any help would be appreciated.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
In addition to enabling the rewrite module have you ensured that your root directory is set to
AllowOverride All
instead of the defaultAllowOverride None
in your virutalhost configuration in /etc/apache2/sites-enabled/This setting allows configuration in an .htaccess file to override the configuration files and do things like url rewrites. Once you have changed the configuration file be sure to restart Apache with:
Maybe I’m missing something, but the only file in that directory is 000-default.conf and the file is empty. Admittedly I am new to this and may just be missing something.
What did the trick for me was modifying the /etc/apache2/apache2.conf
Change:
To:
Reload apache after you modify it.