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!
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.
Hi there,
I personally use the following rule for PHP files:
The main difference is the
%
sign in front of1.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