Quote:
Originally Posted by leodestroy
I add my site to sape.ru. But it scans only the pages of forums and blogs. CMS does not recognize. It seems to me that problem in redirect
|
fist thing you need to check in your .htaccess file is the following
Code:
Options +FollowSymLinks
RewriteEngine On
this should only appear once
this should be below
Code:
rewritecond %{http_host} ^sape.ru [nc]
rewriterule ^(.*)$ http://www.sape.ru/$1 [r=301,nc]
end result should be
Code:
Options +FollowSymLinks
RewriteEngine On
rewritecond %{http_host} ^sape.ru [nc]
rewriterule ^(.*)$ http://www.sape.ru/$1 [r=301,nc]
i hope this helps