如何重定向不seo友好的网址

时间:2013-06-20 12:15:07

标签: .htaccess

请帮助将此网址http://tanyahelfandblog.com/?p=86重定向到http://www.tanyahelfand.com/what-is-a-prenuptial-agreement/文件中的此网址:.htaccess

1 个答案:

答案 0 :(得分:0)

如果它只是一个重定向,你可以使用这样的东西:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{QUERY_STRING} p=86
RewriteRule ^.*$ http://tanyahelfand.com/what-is-a-prenuptial-agreement/? [L,R=301]

如果你想要它用于很多链接,如果你使用其他技术(比如在数据库中存储重定向),它会更好。