URL的条件.htaccess

时间:2010-10-21 16:50:44

标签: php .htaccess

RewriteRule ^photographs/?$ photographs.php [L]
RewriteRule ^photographs/(.*)/?$ photographs.php?cat=$1 [L,QSA]
RewriteRule ^photographs/(.*)/(.*)/?$  photographs.php?cat=$1&page=$2 [L,QSA]

我需要这个选项,例如

  • /照片
  • /照片/分类
  • /照片/类别/ 3

由于

1 个答案:

答案 0 :(得分:1)

RewriteRule ^photographs/?$ index.php [L]
RewriteRule ^photographs/([^/]+)/?$ index.php?cat=$1 [L,QSA]
RewriteRule ^photographs/([^/]+)/([^/]+)/?$  index.php?cat=$1&page=$2 [L,QSA]

那是因为(.*)也匹配/个字符。

相关问题