0

我已经搜索并找不到有效的解决方案...

我已经将一个站点从 asp.net 移植到 php。按照指示,我将内部链接保留为 .aspx 用于 seo。对于 wordpress 之外的静态页面,没有查询字符串,我可以正常工作:

RewriteEngine on
RewriteRule ^testimonials.aspx$ /testimonials.php [NC,R=301]

但是,我有一些包含查询字符串的链接......这些链接现在必须指向当前在 wordpress 安装中的页面。我怎样才能得到

myawesomesite.com/catalog.aspx?n=My%incredible%20product

重定向到

myawesomesite.com/catalog/my-new-incredible-product/

myawesomesite.com/catalog.aspx?n=My%other%20product

重定向到

myawesomesite.com/catalog/my-new-other-product/

等等...(在目标中,“目录”是安装 wordpress 的目录)

我试过各种各样的东西,但不是专家。我知道我需要做一些事情来让 apache 捕获查询字符串......

4

1 回答 1

2

我会试一试,下面应该这样做:

RewriteCond %{QUERY_STRING}  ^n=My(?:[\ +]|%20)incredible(?:[\ +]|%20)product$ [NC]
RewriteRule ^catalog\.aspx$ http://www.myawesomesite.com/catalog/my-new-incredible-product/? [R=301,NE,NC,L]

只需修改部分以匹配您的其他 URL

我一直发现这个工具对重定向很有用

http://seo-website-designer.com/HtAccess-301-Redirect-Generator

于 2012-07-27T10:31:16.137 回答