这看起来很简单,但它不适合我。我试图让 show.php?id=$1 和 producer.php?id=$1 都重写为友好的 URL。第一个完美运行,第二个没有。如果我删除第一个,第二个工作正常。
我在这里做错了什么?
我的代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]*)\.html$ /show.php?id=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]*)\.html$ /producer.php?id=$1 [L]
</IfModule>
提前致谢!