Helicon rewrite and ColdFusion problem

ISAPI_Rewrite is a powerful URL manipulation engine based on regular expressions
User avatar
Posts: 1
Joined: 31 Aug 2012, 10:25

Helicon rewrite and ColdFusion problem

31 Aug 2012, 10:31

I get this error "Server Error Either the Macromedia application server(s) are unreachable or none of them has a mapping to process this request."

my httpd.ini rules are:
#Internally add extensions to request
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) url_parser.cfm

I have the exact same problem as this topic http://www.helicontech.com/forum/11784-Ape_and_ColdFusion_problem.html, but with helicon rewrite 2.

The solution provided to that topic can not apply to my case beacase the application runs with iis6.

I tried to change the handler for coldfusion files with the wildcar one, but still the problem occurs.

Can anyone help me please?

User avatar
Posts: 871
Joined: 12 Mar 2012, 09:54

Re: Helicon rewrite and ColdFusion problem

03 Sep 2012, 06:08

Hello,

First, please notice that the rules you have in httpd.ini are written in ISAPI_Rewrite 3 syntax and won't work in v2.

These directives

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

are not supported. To make the same effect in v2 you need to enlist all physical files and folders as follows:

RewriteRule /(?!(?:folder1|folder2|images|css|js|index\.cfm|etc).*).* /url_parser.cfm [L]

It's not very convenient, so if you have a possibility, consider upgrading to v3.

User avatar
Posts: 8
Joined: 23 Oct 2012, 23:06

Re: Helicon rewrite and ColdFusion problem

24 Oct 2012, 22:54

Just wondering if some effects in v2 works in v3?

User avatar
Posts: 871
Joined: 12 Mar 2012, 09:54

Re: Helicon rewrite and ColdFusion problem

25 Oct 2012, 03:50

@ klauzser:
"Just wondering if some effects in v2 works in v3?"
- could you please be more specific. Do you want some rule to be converted to v3 syntax?

Return to ISAPI_Rewrite 2.x

Who is online

Users browsing this forum: No registered users and 7 guests