0

我正在尝试强制将所有请求重定向到

http://website.com/

http://website.com/2013/04/

这样做

RewriteEngine on
Options +FollowSymlinks
Options -Multiviews

RewriteRule ^2013/03/ index.html

将指导任何请求

website.com/2013/03/ to the index.html

但我如何强制重定向到 website.com/2013/03/

4

1 回答 1

0

使您的网址可爱并适合搜索引擎排名。

 Options +FollowSymLinks
 RewriteEngine on
 RewriteCond %{HTTP_HOST} ^yoursite.com
 RewriteRule (.*) http://www.yoursite.com/$1 [R=301,L]
 RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /index.html HTTP/
 RewriteRule ^index.html$ http://www.yoursite.com/ [R=301,L]

重定向

redirect 301 /old-page.php http://www.yoursite.com/new-page.php
于 2013-04-01T04:48:52.560 回答