Htaccess仅适用于友好网址

时间:2016-01-16 10:02:59

标签: php apache .htaccess mod-rewrite

如何才能为友好网址重写htaccess? 我有

RewriteRule ^products/([0-9]+)?$ show_a_product.php?product_id=$1    [NC,L]

我想为/products/1等网址重定向,但也适用于/show_a_product.php?product_id=1

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]