Helicon rewrite and ColdFusion problem
4 posts
• Page 1 of 1
Helicon rewrite and ColdFusion problem
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?
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?
Re: Helicon rewrite and ColdFusion problem
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.
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.
Re: Helicon rewrite and ColdFusion problem
@ 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?
"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?
4 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 6 guests