Questions tagged [isapi-rewrite]

ISAPI_Rewrite is a URL rewriter for Microsoft IIS, from Helicon Tech.

ISAPI_Rewrite from Helicon Tech. This is a URL rewriter for Microsoft IIS.

There are two versions still in use, with different syntax, so it is helpful to specify the version in the question. v3 is the latest, compatible with Apache mod_rewrite. v2 is the previous incompatible version. Both versions of ISAPI_Rewrite are really meant for IIS6 and earlier. For IIS7, Helicon Tech strongly recommends their Helicon Ape product, which contains the mod_rewrite as one module. There is a separate tag for Helicon Ape.

252 questions
3
votes
2 answers

URL Rewrite of a subdirectory to a different domain using IIS

GOAL #1: www.web1.com/web2 needs to point to www.web2.com GOAL #2: Users must always see www.web1.com/web2 and the paths & queries in web2 For example: www.web1.com/web2/login OR www.web1.com/web2/?query=string www.web1.com is on IIS6 (using ISAPI…
happy297
  • 71
  • 1
  • 5
3
votes
5 answers

With Coldfusion, how do you handle dynamicaly generated URLs?

(Update: I converted this question to a community wiki as the answer appears more subjective than I thought it would. There are multiple answers depending on one's needs.) If I have a folder that only includes application.cfc and index.cfm, what is…
Dan Sorensen
  • 11,403
  • 19
  • 67
  • 100
3
votes
0 answers

HttpExtensionProc::jk_isapi_plugin.c (2328): service() failed with http error 503

We are facing two problem using isapi redirector on a virtual machine. Every couple minutes the log shows http error 503: ... [Sun Oct 14 14:25:02.465 2012] [8428:7856] [error] ajp_send_request::jk_ajp_common.c (1662): (application) failed…
Dedi Hakak
  • 31
  • 1
  • 2
3
votes
2 answers

Isapi Rewrite 301 redirect resolves as 404 - circular reference?

I'm trying to use IIS Isapi Rewrite to do the following... I need seo-friendly URLs to be (silently) converted back to application friendly URLs like so: RewriteRule ^/seo-friendly-url/ /test/index.cfm [I,L] Simple enough. But I also need URLs…
stubotnik
  • 1,952
  • 2
  • 17
  • 31
2
votes
1 answer

Am I able to set "Default Web Site"'s properties through a child website's web.config file? (IIS6)

I am experiencing the following issue under IIS6. I understand the issue completely, I am just looking for the best solution. I have the following: Default Web Site apiservices ourwebsite The website 'apiservices' is running under .NET Framework…
Sean Anderson
  • 27,963
  • 30
  • 126
  • 237
2
votes
2 answers

isapi rewrite debugging or test harness

Was wondering if anyone was aware of, or had experience with, debugging a set of isapi rewrite rules? I have a pretty large set of rules and so it is not easy to manually go through them. So i was wondering if there are any test harnesses available…
WickyNilliams
  • 5,218
  • 2
  • 31
  • 43
2
votes
1 answer

SEO friendly URL's with .htaccess

Can anybody please help me with some URL rewriting? I have (for example) these pages: www.mydomain.com/test/gallery.asp?id=2 www.mydomain.com/test/gallery.asp?id=3 and want them to be requested…
waanders
  • 8,907
  • 22
  • 70
  • 102
2
votes
1 answer

Exclude certain URL's from ISAPI Rewrite 3's URL Rewrite

I'm building a Drupal CMS website on IIS 6 and using ISAPI Rewrite 3 to make the url's more readable. My problem is that I have a virtual directory located within the Drupal site but which points to a local directory outside of the Drupal website…
JohnyD
  • 83
  • 1
  • 10
2
votes
1 answer

Configuring a reverse proxy on IIS 6 with Isape_Rewrite3

I'm running IIS6 on Windows Server 2003. I am trying to set up a tool on one of my websites that requires a reverse proxy. As I understand it, I need to capture a script reference pointing at my.domain.com/toolname/subfolder/javascript.js to pull…
JDev
  • 168
  • 1
  • 9
2
votes
0 answers

URL Rewriting syntax IIS 8 ISAPI Rewrite 3

I had a previous post regarding this matter: ISAPI_Rewrite and Coldfusion Rules With the help of Helicon Support we were able to create the following rules: RewriteEngine on RewriteRule on RewriteBase / RewriteCond %{QUERY_STRING}…
johnnyc0506
  • 133
  • 1
  • 3
  • 12
2
votes
2 answers

Transfer ISAPI_Rewrite code to Built-In IIS7 Rewrite Engine

I've transferred my IIS6-based website to IIS7. It uses ISAPI Rewrite. I want to use the built in IIS7 rewrite engine. I have the following code in my httpd.ini file: [ISAPI_Rewrite] RewriteRule /httpd(?:\.ini|\.parse\.errors).* /…
Alon Gubkin
  • 56,458
  • 54
  • 195
  • 288
2
votes
1 answer

IIS 7.5 URL rewriting not working

Today I have set up a new site with ColdFusion 10 and IIS . My project uses URL rewriting , I have installed "urlrewrite2.exe" . After that I have imported 'httpd.conf' file given by the client to the site . When I am browsing my site , the homepage…
Deepak Kumar Padhy
  • 4,128
  • 6
  • 43
  • 79
2
votes
4 answers

Regular Expression Match Without Final Character

I'm trying to match any requests for a url that do not have a folder character (/) or end with an extension (.aspx). I can ignore querystring values and fragments in the regular expression for now. So far I have the…
William
  • 8,007
  • 5
  • 39
  • 43
2
votes
2 answers

ISAPI_Rewrite Rule for version 2

How can I write the following rule in older version of ISAPI_rewrite ? RewriteCond %{HTTP_HOST} ^fit-reisen.de$ [NC] RewriteRule ^(.*)$ http://www.fitreisen.de/$1 [R=301,L] I tried to write like RewriteCond Host:…
user160820
  • 14,866
  • 22
  • 67
  • 94
2
votes
1 answer

RewriteHeader - Helicon ISAPI Redirect Old URL

There are instructions in the Helicon documentation on using the RewriteHeader http://www.isapirewrite.com/docs/#RewriteHeader and even one example which does exactly what I am looking for: And this rule will add Old-URL header to the request,…
Aligma
  • 562
  • 5
  • 29
1
2
3
16 17