+ Reply to Thread
Results 1 to 2 of 2

Thread: Disable .html on all pages

  1. #1
    Member
    Join Date
    Dec 2015
    Location
    USA
    Posts
    82

    Disable .html on all pages

    How to disable .html on all pages?

  2. #2
    Hi

    1 - Make a copy of the .htaccess file, And save the copy on your device ( Your PC )

    2- With .htaccess under apache you can do the redirect like this:
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)\.html$ /$1 [L,R=301]

+ Reply to Thread