我有以下重写规则。
RewriteRule ^products/([A-Za-z0-9-]+)?$ products/prd_templates/index.php?url=$1 [NC,L]
..正确地重写了页面网址。指向它从
mydomain.com/products/product-alias -> mydomain.com/products/index.php?url=product-alias
现在我的问题是这个。
当我去
http://www.mydomain.com/products
我的页面似乎重定向到另一个页面,而不是在我的产品目录中加载我的 index.php。
我想我需要设置一些重写条件规则来防止我的产品目录重定向。
想知道是否有人可以为我指出正确的方向。谢谢。