| Posted: 27 January 2012 at 6:45am | IP Logged
|
|
|
Thanks for the response. I removed the [L] but the trailing slash was not added.� I have included my updated config file and the Rewrite log:
# Helicon ISAPI_Rewrite configuration file# Version 3.1.0.88
# all urls should be lowercase# exclude certain folders
RewriteCond %{REQUEST_URI} ^(?!.*(?:images|css|js|lib|cm|global|workarea|admin|1|des|dl|notrk|xmlfiles))(.*)$ [NC]
# exclude certain extensions
RewriteCond %{REQUEST_URI} !\.(?:axd|asmx|ico) [NC]
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule .? %{REQUEST_URI}\?%{QUERY_STRING} [CL,R=301]
# fix missing trailing slash# exclude certain folders
RewriteCond %{REQUEST_URI} ^(?!.*(?:images|css|js|lib|cm|global|workarea|admin|1|des|dl|notrk|xmlfiles))(.*)$ [NC]
RewriteRule ^([^.?]+[^.?/])$ $1/ [R=301]
] (2) init rewrite engine with requested uri /FOLDER
] (1) Htaccess process request D:\Program Files\Helicon\ISAPI_Rewrite3\httpd.conf
] (1) Htaccess process request d:\inetpub\business\dev\root\.htaccess
] (3) applying pattern '.?' to uri 'FOLDER'
] (4) RewriteCond: input='/FOLDER' pattern='^(?!.*(?:images|css|js|lib|cm|global|workarea|admin|1|des|dl|notrk|xmlfiles))(.*)$' => matched
] (4) RewriteCond: input='/FOLDER' pattern='\.(?:axd|asmx|ico)' => matched
] (4) RewriteCond: input='/FOLDER' pattern='[A-Z]' => matched
] (1) escaping /folder
] (2) explicitly forcing redirect with http://www-dev.michiganadvantage.org/folder
] (2) internal redirect with /FOLDER [INTERNAL REDIRECT]
Edited by AndrushkaUS - 30 January 2012 at 4:01am
|