WordPress 301 重定向
Wordpress 301 Redirect
我有一个 Wordpress 博客站点,我使用固定链接作为:
%category%/%postname%.html
我想改成:
%postname%.html
现在是旧网址 (https://www.example.com/category/post-name.html) 301 redirect to (https://www.example.com/post-name.html)。
如何使用 .htaccess 文件进行重定向?
只需转到 wp-admin,然后是 /settings,然后是 /permalinks 和 select "Post name"。更多信息请点击此处:https://codex.wordpress.org/Using_Permalinks
对于 301 重定向,您可以将自己的重定向写入 htaccess 文件,但这可能不像使用 Simple 301 Redirects 这样的插件那么容易。
我有一个 Wordpress 博客站点,我使用固定链接作为:
%category%/%postname%.html
我想改成:
%postname%.html
现在是旧网址 (https://www.example.com/category/post-name.html) 301 redirect to (https://www.example.com/post-name.html)。
如何使用 .htaccess 文件进行重定向?
只需转到 wp-admin,然后是 /settings,然后是 /permalinks 和 select "Post name"。更多信息请点击此处:https://codex.wordpress.org/Using_Permalinks
对于 301 重定向,您可以将自己的重定向写入 htaccess 文件,但这可能不像使用 Simple 301 Redirects 这样的插件那么容易。