By Fed
Fed
I am having a problem with my .htaccess
file. I use Apache2 on my Ubuntu 20.04.
I want to rewrite URLs to my PHP file. And I have followed How To Use the .htaccess File and How to Rewrite URLs with mod_rewrite for Apache on Ubuntu 20.04 tutorials.
The problem is when I enter my /home
page, it does not found. While I can still enter /home.php
. However, it works with HTML, both /about.html
and /about
pages work.
Here is my .htaccess
file.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ %1.php [NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ %1.html [NC,L]
I would appreciate any help! Thank you.
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!
Accepted Answer
Hi there,
I personally use the following rule for PHP files:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
The main difference is the %
sign in front of 1.php
, I’ve just tested both and I can confirm that using a %
does not work for me either, but it works with $
.
Let me know how it goes!
Best,
Bobby
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.