Skip to content

Instantly share code, notes, and snippets.

@evemilano
Created January 27, 2015 13:32
Show Gist options
  • Select an option

  • Save evemilano/c8dc8fbe956c037cdfb3 to your computer and use it in GitHub Desktop.

Select an option

Save evemilano/c8dc8fbe956c037cdfb3 to your computer and use it in GitHub Desktop.
Rimuovere .php dall'URL
Options +FollowSymLinks -MultiViews -indexes
RewriteEngine On
RewriteBase /
#Rimuovere .php; usare THE_REQUEST per prevenire loop infiniti
RewriteCond %{THE_REQUEST} ^GET\ (.*)\.php\ HTTP
RewriteRule (.*)\.php$ $1 [L,R=301]
@evemilano
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment