如何重定向所有帖子的永久链接。html到/,在Wordpress中?现在我所有的帖子url都以/结尾,但之前是以。html
更清楚地说,例如这样的帖子urlhttp://sitename.com/%category%/%postname%.html 要重定向到http://sitename.com/%year%/%monthnum%/%postname%/ . 一个接一个地重定向它们很简单,但我需要一个规则来重定向所有帖子。
我的电流。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
======
谢谢你