Skip to content

Instantly share code, notes, and snippets.

@tieutantan
Created December 3, 2017 20:33
Show Gist options
  • Save tieutantan/3da977cc4bdfb792b576bde3309622eb to your computer and use it in GitHub Desktop.
Save tieutantan/3da977cc4bdfb792b576bde3309622eb to your computer and use it in GitHub Desktop.
Htaccess remove extension ".php"
RewriteEngine on
RewriteRule ^(.+)\.php$ /$1 [R,L]
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*?)/?$ /$1.php [NC,END]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment