2012-03-30 79 views
1

我试图重写试图重写的Index.aspx到搜索引擎友好

/products/index.aspx?m=CISCO&c=REF&p=DS-C24-300AC 

CISCO-DS-C24-300AC.html 

我目前配置了我的规则这么远,但我不明白为什么这并未”工作。

RewriteRule ^products/index.aspx?m=(.*)&c=([^/.]+)&p=([^/.]+)$ $1-$3.html [R=301,L] 

我也用

RewriteRule ^([^-]*)-([^-]*)\.html$ /products/index.aspx?m=$1&c=REF&p=$2 

任何帮助,任何人都可以提供,我将非常感激。我似乎无法弄清楚我错过了这一点。

回答

3

我通过以下

RewriteCond %{QUERY_STRING} m=(.*)&c=([^/.]+)&p=([^/.]+) 
RewriteRule ^products/index.aspx?$ /%1-%3.html? [R=301,L] 
完成了本