0

我的 htaccess 有一些问题...

我希望我的网址是这样的:

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/

问题是除了“http://example.com/artist/”之外的所有 url 的工作

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]
4

1 回答 1

2

这条线

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

将匹配http://example.com/artist/这可能不是您想要的。如下更改

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

如果这不能完全解决它,请告诉我结果。

于 2011-11-26T14:40:28.763 回答