我的 .htaccess 文件适用于以下网址
http://www.mywebsite.com/product/category/Girls-Clothes
.htaccess 文件:
RewriteEngine On
RewriteRule ^product/category/([a-zA-Z0-9-/]+)$ /product/category/category.php?cid=$1
RewriteRule ^product/category/([a-zA-Z0-9-/]+)/$ /product/category/category.php?cid=$1
但是当我使用页码和友好的 url 时,它不起作用
http://www.mywebsite.com/product/category/Girls-Clothes?pno=2
我有两个变量cid和pno,.htaccess 中提到了 CID 但是当我 wtore “pno”时它给了我 sql 错误。
RewriteRule ^uk/category/([a-zA-Z0-9-/]+)$ /uk/category/category.php?cid=$1?pno=$1
RewriteRule ^uk/category/([a-zA-Z0-9-/]+)/$ /uk/category/category.php?cid=$1?pno=$1
请让我知道我在哪里做错了