排除文件夹 - 在htaccess中重写url

时间:2010-03-19 18:56:40

标签: apache mod-rewrite

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

请帮帮我

1 个答案:

答案 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]