我想用重写模块限制url中特殊字符的输入

我想用重写模块限制url中特殊字符的输入

这是 Apache conf 文件中的代码。

RewriteCond %{REQUEST_URI} (\.\.|%2e%2e|%252e%252e|%u002e%u002e) [OR]
RewriteCond %{QUERY_STRING} (\.\.|^%2e%2e|^%252e%252e|^%u002e%u002e)
RewriteRule ^(.*)$ /err_page.php [L]

我应该改变什么?

相关内容