Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在 www.mydomain.com/blog1 下运行的 wordpress 博客。我想把它移到 www.mydomain.com/blog2。我的 blog1 链接已被 google 索引,我也想为它们设置 301 永久重定向。我怎样才能做到这一点?谢谢你。
移动 WordPress 记录在Codex中。按照那里提到的步骤进行操作。
至于重定向,你.htaccess应该修改。尝试添加这些行:
.htaccess
RewriteEngine on RewriteBase / RewriteRule ^blog1/(.*) www.mydomain.com/blog2/ [R=301,L]
试试这个-> .htaccess
虽然我自己从未尝试过,但它应该可以工作!