0

首先,对不起我的英语不好。

我尝试重写从 Form Get 生成的 url 并重定向它。

我的网址是这样的:

http://www.mysite.com/properties?action=search&agreement=for-rent&category=my-category&type=&zone=my-zone&city=my-city

我已经配置了这个 .htaccess :

11. RewriteCond %{QUERY_STRING} ^action=(?:[a-zA-Z\-]*)&(?:.*)=([a-zA-Z\-]*)&(?:.*)=([a-zA-Z\-]*)&(?:.*)=([a-zA-Z\-]*)&(?:.*)=([a-zA-Z\-]*)&(?:.*)=([a-zA-Z\-]*)$
12. RewriteRule (.*) %{REQUEST_URI}/%1/%2/%3/%4/%5/? [R=301,L]

所以基本上我所有的请求都是直接到 index.php 的。

21. RewriteCond %{REQUEST_URI} !index\.php|resources|hidden
22. RewriteRule ^(.*)$ index.php/$1 [L]

一切正常,但问题是当我在查询字符串中有一个空值时,规则添加双斜杠并且上面的 url(例如 whit &type=&zone=my-zone... 类型有空值)将像这样翻译:

http://www.mysite.com/for-rent/my-category//my-zone/my-city/

问题是:如果我在查询字符串中有一个或多个空值,如何在 .htaccess 中删除生成的双斜杠?

谢谢

4

1 回答 1

1

最简单的是做另一个重定向(不是很漂亮,因为它需要两个 301)。

RewriteCond %{THE_REQUEST} //
RewriteRule .* $0 [R=301,L]

有趣的是,当 url 加载了双斜杠时,mod_rewrite 会自动删除它。因此,正如您在上面看到的那样,您只需将 url 重写为自身。

于 2012-05-25T17:02:20.233 回答