How to view website without ".html" extension

My site is www.kushan.xyz, I want to https://kushan.xyz/contact.html redirect to https://kushan.xyz/contact. How to do this?

you need an .htaccess file to do this

RewriteEngine On
RewriteRule ^([a-z]+)\/?$ $1.html [NC]

save this code as .htaccess file and put it into htdocs folder
if you faced any issue just tell me
and here is an article that may help you too
https://www.codeofaninja.com/2013/04/mod-rewrite-url.html

2 Likes

I can now see the changes apported to the htaccess, because now I can access that page either from .html and from nothing else applied. @kushan96, now change the links in your navbar to point to their versions without .html and you’re done!

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