0

我的尝试:

RewriteCond %{QUERY_STRING}     ^id=(.*)$    [NC]
RewriteRule ^/product$       /product/%1      [NC,L,R=301]

我只想将此规则应用于/product//supplier/目录。它们都是一级子目录。

注:product/?id={xxx}实际上是product/index.php?id={xxx}. Apache 隐藏了我的扩展和索引。只是想指出这一点。

product/index.php处理给定的参数并确定它应该显示的页面:

索引.php

if ( isset( $_GET['id'] ) && !empty( $_GET['id'] ) ) {
   //html for individual page e.g. /product/?id=foo
   //e.g. <h1><?= $_GET['id'] ?> Page</h1>
} else {
   //html for product list e.g. /product/ (no parameters)
}
4

1 回答 1

1

在根目录的一个 .htaccess 文件中尝试此操作:

Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} id=(.+)          [NC]
RewriteRule ^(product|supplier)/?$   /$1/%1? [NC,L,R=301]

在 .htaccess 文件中,在规则中测试它的 URI 路径没有前导斜杠 ( ^/product),因此正则表达式也不能有它。trailng?删除传入的查询。

如果要将规则集放在 Apache 主配置文件中,则应保留前导斜杠:^/(product|supplier)/?$

更新

显示想要的 URL,但仍从原始 URL 获取数据。

要求:/product/?id=parameter

Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /

RewriteCond %{THE_REQUEST} ^(GET|HEAD)\s/(product|supplier)/\?id=([^\s]+) [NC]
# Strip the query and redirect permanently
RewriteRule  ^(product|supplier)  /$1/%3?   [R=301,L,NC]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{QUERY_STRING} ^$
# Map internally to the original request
RewriteRule  ^(product|supplier)/([^/]+)/?  /$1/?id=$2  [L,NC]

另一种选择是直接在请求中使用“漂亮”的 URL:

请求/product/parameter_/product/?id=parameter

Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{QUERY_STRING} ^$
RewriteRule  ^(product|supplier)/([^/]+)/?  /$1/?id=$2  [L,NC]
于 2013-04-18T20:48:39.413 回答