I have read many posts and articles about how to use .htaccess as well as how to use it on InfinityFree. I just can’t seem to get it to work though.
I am trying to remove the .php extensions from my links but it won’t work. Here’s an example of some code snippets I have tried that didn’t work:
#Script for URL rewriting
#The line below may exist.
RewriteEngine On
#Rewrite all the rules, with / as the base, not requesting any other file or folder.
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([a-z]+)\/?$ $1.php [NC]