2

所以我想知道是否有人愿意帮助我,或者告诉我是否有可能为我的网址做我想做的事情。

所以我希望网址像这样

http://www.example.com/(seriesname)/season/(seasonnumber)/episode/(episodenumber )

'()' 包围的变量需要是我可以解析的 php 变量。这是否可能/对 mod 重写的正则表达式有任何帮助。

我也可以说网址的子部分,只显示一个季节或所有季节的所有剧集。EG: http://www.example.com/(seriesname)/season/(seasonnumber ) 将显示指定季节的所有剧集。

4

1 回答 1

0

干得好:

RewriteCond %{REQUEST_URI} !=/
RewriteCond %{REQUEST_URI} !robots.txt
RewriteCond %{REQUEST_URI} !.php$
RewriteRule ^([^/]*)$ index.php?name=$1
RewriteRule ^([^/]*)/season/([^/]*)$ index.php?name=$1&season=$2
RewriteRule ^([^/]*)/season/([^/]*)/episode/([^/]*)$ index.php?name=$1&season=$2&episode=$3
于 2013-01-05T23:15:29.130 回答