0

好的,我是 ht 访问的新手,我一直在网上搜索这个问题的答案。我目前正在使用 Interspire 购物车并在 URL 中添加某些路径,例如:在 URL 的真正 SEO 部分开始之前的类别、产品、页面和品牌。糟透了。我正在寻找一种方法来摆脱这个在 htaccess 中的 mod_rewite。以下是一些更直观的示例:

当前:case.com/类别/Amazon-Kindle-Cases/

希望它是这样的:cases.com/Amazon-Kindle-Cases/

当前:cases.com/products/Piel-Frama-559-iMagnum-Black-Leather-Case-for-Amazon-Kindle-Fire.html

希望它是这样的:cases.com/Piel-Frama-559-iMagnum-Black-Leather-Case-for-Amazon-Kindle-Fire.html

当前:case.com/brands/PDair.html

希望它是:cases.com/PDair.html

当前:cases.com/pages/News.html

希望它是:cases.com/News.html

我需要为每一个重写还是可以一次完成。 谢谢

4

1 回答 1

1
RewriteCond $1 ^(products|brands|pages|categories)
RewriteRule ^(products|brands|pages)(.*)$ $2 [L]

那行得通吗?

进一步来说:

RewriteEngine on
RewriteCond $1 ^(products|brands|pages|categories)
RewriteRule ^(products|brands|pages)(.*)$ http://cases.com$2 [L]
于 2012-05-03T17:53:48.790 回答