0

继续我在这里问的内容,我想自动重写以下网址

http://testsite.com/siterootb/sample-page.php?bbi=value1&bbl=value2

http://testsite.com/siterootb/sample-page/value1/value2

htaccess现在看起来像

RewriteEngine on

RewriteCond %{QUERY_STRING} !^$
RewriteRule ^(.*) http://localhost%{REQUEST_URI}%1? [R=301,L]

###########################################################################
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^/siterootb/([^/]+)/([^/]+)/([^/]+)
RewriteCond %{DOCUMENT_ROOT}/siterootb/%1.php -f
RewriteRule ^/?([^/]+)/([^/]+)/([^/]+) $1.php?bbi=$2&bbl=$3 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php [L]

我经历了URL重写-查询字符串url重写查询字符串wordpress如何删除?从使用 htaccess 的 url和更多我得到的[query-string] [.htaccess]

4

1 回答 1

1

添加这些规则:

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /siterootb/([^.]+)\.php\?bbi=([^&\ ]+)&bbl=([^&\ ]+)
RewriteRule ^ /siterootb/%1/%2/%3? [L,R=301]

您必须与%{THE_REQUEST}变量匹配的原因是您希望从字面上匹配所请求的内容,而不是 URI。URI 会随着规则的应用而更改,因此如果您匹配%{REQUEST_URI}变量,您将匹配另一个规则所做的更改。

于 2012-10-06T02:38:19.193 回答