How to Remove HTML Extension/ PHP Extension From the URL


How to Remove HTML Extension/ PHP Extension From the URL in 2023 || How to Remove HTML Extension/ PHP Extension from URL || How to make SEO Friendly URL


For HTML Website, copy and paste this line of code in your .htaccess File:


RewriteEngine on 

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME}\.html -f

RewriteRule ^(.*)$ $1.html [NC,L]



For PHP Website, copy and paste this line of code in your .htaccess File:


RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME}\.php -f

RewriteRule ^(.*)$ $1.php [NC,L] 


First