一次重定向所有页面


Redirect all pages at one time

我想知道如何重定向Wordpress的所有URL博主:

http://www.atrack.meusite.com/12015/05/myfirstpost.html

为:

http://www.atrack.meusite.com/myfirstpost/

.pages:

http://www.atrack.meusite.com/p/contact.html

为:

http://www.atrack.meusite.com/contact/

类别:

http://www.atrack.meusite.com/search/label/print

为:

http://www.atrack.meusite.com/category/print/

执行所有更改而无需通过重定向进行重定向?

使用 mod_rewrite/RewriteRule for apache。https://httpd.apache.org/docs/2.4/rewrite/remapping.html

也许将以下内容添加到您的 .htaccess 文件中:

RewriteRule .*/(.*).html /$1
RewriteRule search/label/(.*) /category/$1