By dodea4
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:
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!
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.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.