0

htaccessに問題があります...

私は自分のURLを次のようにしたい:

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 に答える