.htaccess 301重定向

时间:2012-08-25 09:35:59

标签: wordpress .htaccess

我将我的网站从MODx切换到Wordpress到另一个平台,所以现在我必须进行301重定向。

我需要做的就是将http://www.domain.com/page-name.html重定向到http://www.domain.com/page-name/

我应该在Wordpress .htaccess文件中添加哪些行?

.htaccess文件

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

2 个答案:

答案 0 :(得分:3)

只需一页,请尝试:

Redirect 301 /page-name.html /page-name/

对于以html结尾的所有内容,请尝试:

RedirectMatch 301 ^/([^.]+)\.html$ /$1/

答案 1 :(得分:0)

请注意,完整的网址无法使用,只能使用相对网址