1

为了获得漂亮的 URL,我编辑了我的 .htacces 文件

domain.com/category/content

应该重定向到

domain.com/index.php?category=cat&content=cont

这适用于这条线

RewriteRule ^([^/]*)/([^/]*)$ /index.php?category=$1&content=$2 [L]

domain.com/category

应该重定向到

domain.com/index.php?category=cat

显示整个类别的内容

我确信这很容易解决,但对我来说很困惑。

4

1 回答 1

0

使用 2 条规则:

RewriteRule ^([^/]+)/([^/]+)$ /index.php?category=$1&content=$2 [L]
RewriteCond %{REQUEST_URI} !/index.php
RewriteRule ^([^/]+)/?$ /index.php?category=$1 [L]
于 2012-12-14T15:12:30.603 回答