Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chernysh2909/5b6ace6e4ac5c44f36631c436ddba031 to your computer and use it in GitHub Desktop.
Save chernysh2909/5b6ace6e4ac5c44f36631c436ddba031 to your computer and use it in GitHub Desktop.
Удаление дублей главной opencart
# Редирект c www на без www
RewriteCond %{HTTP_HOST} ^www.site.ru
RewriteRule ^(.*)$ http://site.ru/$1 [R=301,L]
# Редирект для главной (с /index.php на /)
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\ HTTP/
RewriteRule ^index\.html$ / [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ / [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment