Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BulatSa/ea0bfe0473f4cecef024f894f128ea7c to your computer and use it in GitHub Desktop.
Save BulatSa/ea0bfe0473f4cecef024f894f128ea7c to your computer and use it in GitHub Desktop.
Убрать .html из урла сайта
В .htaccess
RewriteEngine on
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^.]+)\.html\ HTTP
RewriteRule ^([^.]+)\.html$ http://site.ru/$1 [R=301,L]
RewriteCond %{REQUEST_URI} !(\.[^./]+)$
RewriteCond %{REQUEST_fileNAME} !-d
RewriteCond %{REQUEST_fileNAME} !-f
RewriteRule (.*) /$1.html [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment