Skip to content

Instantly share code, notes, and snippets.

@shabbirbhimani
Created June 3, 2020 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shabbirbhimani/73a73fbdbf0bb1bdd69c821f469aee26 to your computer and use it in GitHub Desktop.
Save shabbirbhimani/73a73fbdbf0bb1bdd69c821f469aee26 to your computer and use it in GitHub Desktop.
htaccess redirect .php to .html
# Part of SEO Interview Questions - https://imtips.co/seo-interview-questions.html
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*).php?(.*)$ $1.html?$2 [R,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment