I've got 2 rewriting conditions in my htaccess file.
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]
The first one doesn't work at any time. The second one is working only if I delete the other one.. What am I doing wrong?
Thank you!