我是codeigniter的新手。事实上,我甚至都没有做过。我刚刚受雇为一个网站工作SEO。我只能访问网站的cpanel,而不是codeigniter的仪表板(我想知道是否有一个?)
到目前为止,我已经能够找出需要我注意的一切。现在唯一的问题是搜索机器人似乎正在重定向。当我尝试取Bingbot时,我得到以下
HTTP/1.1 301 Moved Permanently
Connection: close
Date: Sun, 12 Jun 2016 00:34:29 GMT
Content-Length: 234
Content-Type: text/html; charset=iso-8859-1
Location: http://www.domain.com/
Server: Apache
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="http://www.domain.com/">here</a>.</p>
</body></html>
我认为它可能是写入.htaccess的重定向规则。但是我真的不知道要改变什么以允许机器人顺利地抓取网站。查看下面的.htaccess。
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
我需要添加到.htaccess文件中以允许搜索引擎抓取网站而不再次访问http 301?感谢
答案 0 :(得分:0)
你为什么把这段代码放在.htaccess文件中?
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]