Remove file extension in link

I want to remove the extension of the file in the link on the website.

Try this .htaccess code (you’ll have to create a .htaccess file on your domain’s htdocs folder, then edit that with the following content):

Options +MultiViews
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC]
RewriteRule ^ %1 [R,L,NC]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.html [NC]
RewriteRule ^ %1 [R,L,NC]
5 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.