I have some problems with my htaccess...

I want to have my url's like this:

http://example.com/artist/
http://example.com/artist/rihanna/
http://example.com/artist/rihanna/biography/
http://example.com/artist/rihanna/video/
http://example.com/artist/rihanna/news/

The problem is all of the url's work except for "http://example.com/artist/"

RewriteRule ^artist/([^_]*)/biography/$ /artist-biography.php?name=$1 [L]
RewriteRule ^artist/([^_]*)/biography?$ /artist/$1/biography/ [R=301,L]

RewriteRule ^artist/([^_]*)/video/$ /artist-video.php?name=$1 [L]
RewriteRule ^artist/([^_]*)/video?$ /artist/$1/video/ [R=301,L]

RewriteRule ^artist/([^_]*)/news/$ /artist-news.php?name=$1 [L]
RewriteRule ^artist/([^_]*)/news?$ /artist/$1/news/ [R=301,L]

RewriteRule ^artist/([^_]*)/$ /artist.php?name=$1 [L]
RewriteRule ^artist/([^_/]+)$ /artist/$1/ [R=301,L]

RewriteRule ^artist/$ /artist-page.php [L]
RewriteRule ^artist?$ /artist/ [R=301,L]
link|improve this question

What happens when you try to access http://example.com/artist/? – Ulrich Palha Nov 26 '11 at 15:06
with or without a backslash i get an error : "The page isn't redirecting properly" – m3tsys Nov 27 '11 at 10:59
feedback

1 Answer

up vote 2 down vote accepted

This line

RewriteRule ^artist/([^_]*)?$ /artist/$1/ [R=301,L]

will match http://example.com/artist/ which is probably not what you wanted. Change it as below

RewriteRule ^artist/([^_/]+)$ /artist/$1/ [R=301,L]

If that does not fix it completely, let me know the result.

link|improve this answer
now i don't get that error anymore but i am redirected to "example.com/artist//"; – m3tsys Nov 27 '11 at 11:05
example.com/artist// suggests that the first backereference $1 is empty. However the rule I gave you ([^_/]+) should not match an empty string... Can you verify that this rule is identical to the one in your .htaccess. – Ulrich Palha Nov 27 '11 at 15:13
i don't know what to say... i changed the code like in my first post like you said... so what should be the problem? – m3tsys Nov 27 '11 at 17:31
could that problem was made by the place that the rules ocuppy? i added the last one first (the one that refers to artist-page.php) now it works... – m3tsys Nov 27 '11 at 17:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.