I have the following two redirect rules on place
#RULE1:
Redirect 301 /razno-iz-znanosti/zivotopisi-velikana/blablabla http://www.example.com/someurl.html
#RULE2:
RewriteCond %{REQUEST_URI} /razno-iz-znanosti/zivotopisi-velikana/[\d]+-.*?$
RewriteRule zivotopisi-velikana/[\d]+-(.*?)$ http://www.example.com/zivotopisi-velikana/$1 [L]
The problem is that the first rule will be ignored and it will get redirected by the second rule. How do i set so it uses the first rule before applying the second?
The first rule is positioned above the second rule in the .htaccess but that doesnt seem to have affect.
Thank you
[edited by: jdMorgan at 10:13 pm (utc) on Mar 20, 2010]
[edit reason] example.com [/edit]