Search code examples
html.htaccessmod-rewrite

How to remove .html from URL?


How to remove .html from the URL of a static page?

Also, I need to redirect any url with .html to the one without it. (i.e. www.example.com/page.html to www.example.com/page ).


Solution

  • Thanks for your replies. I have already solved my problem. Suppose I have my pages under http://www.yoursite.com/html, the following .htaccess rules apply.

    <IfModule mod_rewrite.c>
       RewriteEngine On
       RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /html/(.*).html\ HTTP/
       RewriteRule .* http://localhost/html/%1 [R=301,L]
    
       RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /html/(.*)\ HTTP/
       RewriteRule .* %1.html [L]
    </IfModule>