Answer the question
In order to leave comments, you need to log in
The creation of the CNC ruined the indexing of the site in Yandex. What is the problem?
Initially, the site consists of pages of the form -page.html
The site is handwritten, without an engine.
After some time, it became necessary to make all URLs of the site.ru/page type, that is, remove the .html extension
. Climbed into .htaccess. Made.
Yandex saw them as page and page.html duplicates and it was decided to make a 301 redirect from page.html to page through the same .htaccess
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^vash-master\.tv$ [NC]
RewriteRule ^(.*)$ http://vash-master.tv/$1 [L]
AddType application/x-httpd-php5 .php .html .html
RewriteEngine on
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^.]+)\.html\ HTTP
RewriteRule ^([^.]+)\.html$ http://vash-master.tv/$1 [L]
RewriteCond %{REQUEST_URI} !(\.[^./]+)$
RewriteCond %{REQUEST_fileNAME} !-d
RewriteCond %{REQUEST_fileNAME} !-f
RewriteRule (.*) /$1.html [L]
Answer the question
In order to leave comments, you need to log in
write them in robots.txt , and delete the old ones using the webmaster.yandex.ru tool
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question