rewriteCond %{REQUEST_URI} ^(ajax|css|functions|image_viewer|images|img|include|fancybox|jquery|jscript|json)$ - [L]
RewriteRule ^(.[^/])/(.[^/])/(.+[^/]) ?program=$1&usertype=$2&username=$3 [NC]
你可以帮我找到这个错误吗?我需要从网址重写中排除一些文件夹。
我尝试了这里给出的解决方案..但我仍然遇到了一些错误..
http://www.idxsync.com/sbaor/Search/Agent/zz
请帮帮我
答案 0 :(得分:0)
请尝试使用以下配置:
RewriteCond %{REQUEST_URI} !^/(?:ajax|css|functions|image_viewer|images|img|include|fancybox|jquery|jscript|json) [NC]
RewriteRule ^([^/]+)/([^/]+)/([^/]+)$ ?program=$1&usertype=$2&username=$3 [NC,L]