所以我的这个重写条件在我的.htaccess文件的底部作为一个catchall.很好,但是我想要忽略任何请求,并以“/index.cfm”开头
RewriteCond %{REQUEST_FILENAME} !-f RewriteRule (.+) /index.cfm?event=baduri&uri=$1
所以/index.cfm?fddssds不会被触动
但是/ gdfgdfgdfdgf将被重定向..
你可以尝试一下,让我知道:
原文链接:https://www.f2er.com/regex/356684.htmlRewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !^/index.cfm RewriteRule (.+) /index.cfm?event=baduri&uri=$1 [L,NC]