如何才能为友好网址重写htaccess? 我有
RewriteRule ^products/([0-9]+)?$ show_a_product.php?product_id=$1 [NC,L]
我想为/products/1
等网址重定向仅,但也适用于/show_a_product.php?product_id=1
答案 0 :(得分:1)
您可以使用其他规则来阻止/show_a_product.php?product_id=1
URI:
RewriteEngine On
RewriteCond %{THE_REQUEST} /show_a_product\.php[?/\s] [NC]
RewriteRule ^ - [L,R=404]
RewriteRule ^products/(\d+)/?$ show_a_product.php?product_id=$1 [QSA,NC,L]