0

我有一个这样的网址:

http://domain.com/database/movie/jurassic-park.1224.html
http://domain.com/artist/bruno-mars.104.html

我尝试使用以下 RewriteRules 解析这些 URL,但它们不起作用。

RewriteEngine On
RewriteRule ^(.*)\/movie\/(.*)\.(.*)\.html$ ./index.php?area=movies&id=$2 [QSA]
RewriteRule ^(.*)\/artist\/(.*)\.(.*)\.html$ ./index.php?area=people&id=$2 [QSA]

谁能帮帮我怎么了?

4

1 回答 1

0

试试这些规则:

RewriteEngine On

RewriteRule movie/(.+?)\.(\d+)\.html$ index.php?area=movies&id=$2 [L,QSA,NC]
RewriteRule artist/(.+?)\.(\d+)\.html$ index.php?area=people&id=$2 [L,QSA,NC]
于 2015-07-03T07:13:53.440 回答