为什么mod重写规则不起作用


why is the mod Rewrite Rule not working?

我尝试过使用以下代码:

Rewrite Rule    ^products/([0-9]+)/?$    add-category/?cid=$1    [NC,L]   

但它不起作用。

我的url是http://webmicrodemo.com/haraz/ad-category/index.php?cid=9

并且我想将其更改为http://webmicrodemo.com/haraz/cat/9

您必须以正确的格式编写它。下面给出了正确的方法

#This is for listing active product page
RewriteRule ^(add-category)/([a-zA-Z-_0-9]+)-([0-9]+)/$ index.php?cid=$3
RewriteRule ^(add-category)/([a-zA-Z-_0-9]+)-([0-9]+)$ index.php?cid=$3