下面是我的.htacess文件代码,工作正常
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
但是当我在下面添加新的rewriterules然后新的规则不起作用。它打开php wampserver主页..
RewriteRule ^([\w-]+)/([\w-]+)/([\w-]+)/([\w-]+)/([\w-]+)/([\w-]+).html?$ detail-page.php?network=$1&country=$2&category=$3&subcategory=$4&package_id=$5 [QSA,L]
请告诉我添加此新规则的位置和方式,以便它可以正常工作