1

我正在尝试使用 mod_rewrite 递归修改我的网页网址,但无法找出这种情况的重写规则:

我想从模式更改我的网址

http://mywebsite.com/token1-token2-token3-token4-categoryname

http://mywebsite.com/?cat=categoryname&search=token1+token2+token3+token4

挑战在于 url 中的令牌数量可能会有所不同,因此我需要以某种方式递归处理令牌匹配和转换。任何想法如何实现?

4

2 回答 2

1

尝试:

# Remove all of the - and replace with +
RewriteRule ^(.*)-(.*)$ /$1+$2 [L]

# only rewrite when there are no more -
RewriteCond %{REQUEST_URI} !\-
RewriteRule ^(.+)\+([^\+]+)$ /?cat=$2&search=$1 [QSA,L]
于 2012-07-02T03:13:29.577 回答
0

RewriteRule ^/?(.+)\-([^\-]+)$ /?cat=$2&search=$1 [QSA,L]

于 2012-06-30T15:09:15.360 回答