Skip to content

Instantly share code, notes, and snippets.

@shrwnsan
Created January 5, 2015 19:51
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 shrwnsan/8a0daa4becfc8f0048b3 to your computer and use it in GitHub Desktop.
Save shrwnsan/8a0daa4becfc8f0048b3 to your computer and use it in GitHub Desktop.
To remove the .php extension from a PHP file for example yoursite.com/wallpaper.php to yoursite.com/wallpaper
# Removing Extensions
# Source http://alexcican.com/post/how-to-remove-php-html-htm-extensions-with-htaccess/
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment