Report this

What is the reason for this report?

Remove URL extension with a2enmod rewrite with htaccess

Posted on November 7, 2015

Hi there :-)

I am trying to enable the URL rewrite so that when a person goes to http://sitename.org/home.php they will not see the extension or .php .

I cannot get it to work unfortunately, this is what i have done:

I think I must be missing something small here:

#my htaccess:

RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.*)$ $1.php [L]


#set permissions to 664

#a2enmod is enabled

#removed extension from links in code (changed link in nav menu form /home.php to /home)

#restarted apache

when i got to …/home - i get a 404.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

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.

Make sure that you have AllowOverride set to All in your apache virtual host file.

<Directory /var/www/html>
        Options -Indexes +FollowSymLinks +MultiViews
        AllowOverride All
        Require all granted
</Directory>

And then restart apache.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.