我使用apaches模块重写(浏览器友好的URL)时遇到了问题。我想将每个请求重写到指定的php文档,期望包含给定字符串的任何请求:
RewriteBase /folder/directory/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
如何包含一个条件来重定向请求,包括“teststring”(忽略前后文本)到另一个目录?我想直接将jQuery ajax调用重定向到另一个目录!
终于得到了解决方案: .htaccess mod_rewrite - how to exclude directory from rewrite rule
答案 0 :(得分:0)
我不确定我是否理解你想要什么。但这是我的看法:
RewriteRule ^(.*)teststring(.*) newdirectory [R,L]