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
0
votes
1 answer

Weird thing for ISAPI_Rewrite

I've install ISAPI_Rewrite on IIS server. And i want to rewrite *.site1.com to www.site1.com/* & *.site2.com to www.site2.com/* Here's the code i use in httpd.ini: [ISAPI_Rewrite] RewriteCond Host:^*.site1.com$ RewriteRule ^(.*)$ /www.site1.com/$1…
He Yifei 何一非
  • 2,592
  • 4
  • 38
  • 69
0
votes
1 answer

301 Redirect for folder page in ISAPI Rewrite

What would the proper syntax be to redirect a URL in ISAPI Rewrite that's in a folder to the homepage? For example... /category/sub-category/file.html I've tried numerous things, such as... RewriteRule ^category/sub-category/file.html /…
0
votes
1 answer

URL Rewriting on a ISAPI shared server (using PHP)

I need to rewrite URLs. The problem is that I am developing in PHP on an ISAPI server. An additional problem is that I am not the owner/manager of the server. Is there any way to rewrite URLs for PHP on a shared ISAPI server?
Chaim
  • 2,109
  • 4
  • 27
  • 48
0
votes
1 answer

ISAPI_rewrite multiple domains and rewrite urls

For .htaccess file, with ISAPI_rewrite I'm designer not coder, need help if someone can code for rewrite urls for SEO - Thanks in advance. I have multiple domains on same server and each domain's content is sharing…
0
votes
1 answer

ISAPI_Rewrite and Coldfusion Rules

This is the first time that I am trying to use ISAPI_Rewrite and ColdFusion. My hosting company has a wiki which says I need to create an .htaccess file and add the following rules to it: RewriteEngine on RewriteRule…
johnnyc0506
  • 133
  • 1
  • 3
  • 12
0
votes
2 answers

ISAPI Rewrite rule help ( .html -> .aspx )

Recently I'm working on a refactor project from asp to asp.net 3.5. There are lots of .html file uses .inc file for the header and footer in the old site, and needed to be converted to .aspx uses master page. My problem is, for search engine and for…
ben
  • 1,525
  • 2
  • 15
  • 15
0
votes
1 answer

ISAPI_rewrite multy string search and rewrite to one

I'm new to this, need help writing this rewrite code. I have 7 domains parked on same server and each domain content is in it's own folder currently I'm using like: RewriteEngine on RewriteRule ^([^.?]+[^.?/])$ $1/ [R,L] RewriteCond %{HTTP:Host}…
0
votes
4 answers

Changing Urls on ASP.NET form with Master pages

We've had a requirement from a client to move a site that is running on it's own domain to a subfolder of another app. I've acheived this using ISAPI rewrite proxying. However, there is one form that does a post back in the site. The generated url…
Rob Stevenson-Leggett
  • 35,279
  • 21
  • 87
  • 141
0
votes
0 answers

Isapi_rewrite 3: Redirect all non-extension requests to special file handler

I started a new site. In my .htaccess file I thought it would be a simple matter of taking any request that didn't explicitly have a file extension in the request and rewrite to a specific file. So, for example, if the request…
0
votes
1 answer

Convert isapi rewrite rules to IIS 7 rewrite

I am using helicon isapi rewrite with vbSEO on vBulletin forums. I don't see any need to be using a separate isapi rewrite tool if I'm using IIS 7. Rewrite rules and regex are not my strength. If anyone can help me convert the info below into an…
Neal
  • 9,487
  • 15
  • 58
  • 101
0
votes
1 answer

ISAPI_Rewrite Version 3 get all query string parameters

I have a given URL: http://www.simtalltd.com/hebrew/index.php?option=com_content&task=view&id=15&Itemid=29 And I need to get all the string after: http://www.simtalltd.com/ Like this:…
0
votes
1 answer

URL rewrite (ISAPI)

I have a section of a website I'm building that is for the user's account pages. The map of this bit of the site is like this: *root*/account/details.php *root*/account/subscriptions.php *root*/account/options.php I want to make it so that if a…
0
votes
1 answer

appending to the beginning of a URL string using isapi 3

Trying to take an existing URL say: domain.com/qe/info/happy/ and prepend with the following: /qe-happy/ before: domain.com/qe/info/happy/ after: new.com/info/qe-happy/ I am using asapi 3
Citti
  • 423
  • 1
  • 6
  • 23
0
votes
1 answer

ISAPI_REWRITE a simple search and replace?

Using ISAPI REWRITE v3 I need to replace a string in an URL. The old string is 'p=type1_' and the new is 'p=type2_'. …
SAL
  • 1,218
  • 1
  • 14
  • 34
0
votes
1 answer

ISAPI_Rewrite2 rules failing on IIS 8.0

The rule below worked on all our sites for 5 years under ISAPI_Rewrite2 on Windows 2008 Server 64 bit on IIS7.5 # Rewrite the domain to begin with so always have www. prefix for SSL RewriteCond Host: ([^.]+\.com.au) RewriteRule (.*)…
Phil Rasmussen
  • 635
  • 1
  • 7
  • 20