【发布时间】:2011-05-20 06:55:47
【问题描述】:
为 htaccess 寻找有效的重定向代码。 大约有 200 个链接(实际上所有请求都会通过重定向)
目标:
http://example.com/pages.shtml被重定向到http://example.com/pages应该是301重定向记住页面排名保留
【问题讨论】:
标签: .htaccess redirect pagerank
为 htaccess 寻找有效的重定向代码。 大约有 200 个链接(实际上所有请求都会通过重定向)
目标:
http://example.com/pages.shtml 被重定向到http://example.com/pages
应该是301重定向记住页面排名保留
【问题讨论】:
标签: .htaccess redirect pagerank
RewriteRule ^([^/]+)\.shtml http://example.com/$1 [L,R=301]
【讨论】: