htaccess重写条件不起作用

时间:2017-11-22 18:28:11

标签: regex .htaccess mod-rewrite url-rewriting

我的htaccess文件中有2个重写条件。

RewriteEngine on
RewriteCond %{REQUEST_URI} ([0-9]+)/([A-Za-z0-9-]+)
RewriteRule (.*) projekt.php?id=%1&title=%2 [L]

RewriteEngine on
RewriteCond %{REQUEST_URI} ([0-9]+)/([A-Za-z0-9-]+)
RewriteRule (.*) artikel.php?id=%1&title=%2 [L]

第一个在任何时候都不起作用。第二个是在我删除另一个时才工作。我做错了什么?

谢谢!

0 个答案:

没有答案