请帮助将此网址http://tanyahelfandblog.com/?p=86
重定向到http://www.tanyahelfand.com/what-is-a-prenuptial-agreement/
文件中的此网址:.htaccess
。
答案 0 :(得分:0)
如果它只是一个重定向,你可以使用这样的东西:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{QUERY_STRING} p=86
RewriteRule ^.*$ http://tanyahelfand.com/what-is-a-prenuptial-agreement/? [L,R=301]
如果你想要它用于很多链接,如果你使用其他技术(比如在数据库中存储重定向),它会更好。