1

この .htaccess ルールは、「format=pdf」クエリ文字列で終わる URL に対して機能しますが、URL の途中にある場合は機能しません。

RewriteCond %{QUERY_STRING}  ^format=pdf$
RewriteRule (.*)  http://www.betonbetone.co.il/404?  [R=301,L]

作品:http://www.mysite.com/index.php/floor/230-1?format=pdf

動作しません:http://www.mysite.com/index.php?view=article&catid=37%3A2009-10-15-19-28-33&id=81%3A2009-09-21-21-00-34&format=pdf&option=com_content&Itemid=89

2番目のURLで機能させるのに役立つ人はいますか? ありがとう

4

1 に答える 1

2

いくつかの正規表現操作:

RewriteCond %{QUERY_STRING} (^|&)format=pdf(&|$) [NC]
RewriteRule $ http://www.betonbetone.co.il/404?  [R=301,L]
于 2013-10-20T08:24:28.173 に答える