How to remove extensions from urls in the website

67 Views Asked by At

I try to remove extensions from the url by creating a .htaccess page in the root folderwith the following code RewriteEngine RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.*)$ $1.php but it is not working pls help me out......

1

There are 1 best solutions below

0
On BEST ANSWER
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule .* $0.php

use this code in your .htaccess file and remove the extensions of your php files in a href itself