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

From mod_rewrite to isapi_rewrite

I have a Modx htaccess file which needs to be rewritten from mod_rewrite to isapi_rewrite 2. Can someone please help me? The following lines need to be changed for isapi_rewrite 2: Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteCond…
Ty.
  • 1
0
votes
1 answer

using an old part of a URL and passing it into a query string changing - dashes to + plus signs

Having an issue with re-writing a URL from - dashes to + signs I have searched through the forums and found how to get the first dash... but cant figure out how to break all of my words apart. any help would be appreciated. URL:…
Citti
  • 423
  • 1
  • 6
  • 23
0
votes
0 answers

ISAPI Rewrite - HTTP to HTTPS redirect for a particular web page

I have this ISAPI Rewrite rule that is working: RewriteRule ^/signup$ /signup.aspx [I,L] and I want to redirect the traffic to HTTPS for this web page. I tried this rule and other similar rules: RewriteCond %{HTTPS} off RewriteRule ^/signup$…
alex.pulver
  • 2,107
  • 2
  • 31
  • 31
0
votes
1 answer

ISAPIREWRITE - Access to an external site without changing the url of my domain

How to make a redirect from my website to an external website without losing my domain url using isapirewrite. For example my site has access to mydomain.com/IT esternaldomain.com, which upon entering the url link that should be…
0
votes
1 answer

isapi rewrite 3 changing # character into a %23 in browser

All, Trying to redirect too a URL like below: http://domain/something/index.html#some/more/stuff.html only problem here is that the # is getting changed into a %23 and it does not fine this URL. Am i supposed to treat this differently? Thanks in…
Citti
  • 423
  • 1
  • 6
  • 23
0
votes
1 answer

Isapi ReWrite: How can I match a part of a url?

we are moving website platforms. The old site has some url rewriting built into it, so the urls look like "/product-name-here-1.aspx". I need to get the id out of this url using Isapi-Rewrite syntax. I've got a map file that takes the id and…
0
votes
2 answers

ASP.NET + URL Rewriting: How to handle themes, css, js, etc resources?

I've written URL using Helicon ISAPI Rewrite v3 for following: www.foo.com/tags/tag1 --> www.foo.com/Pages/Articles/ArticleListing.aspx?tags=tag1 But the .css, .js i've refered are being accessed by browser…
Parag Meshram
  • 8,281
  • 10
  • 52
  • 88
0
votes
1 answer

.htaccess redirect is not working

Running into any issue where my redirect is not firing... This is isapi rewrite 3.0 original domain: http://sub.main.com/asdf/asdff/index.php?/asdfff/14/asdffff-540-a-s-d-f-f/ New domain: http://newsub.newmain.com/a-s-d-f-f/ (quick edit - was…
Citti
  • 423
  • 1
  • 6
  • 23
0
votes
1 answer

How to Rewrite URL like: www.foo.com/tags/tag1+tag2 --> www.foo.com/Pages/Articles/ArticleListing.aspx?tags=tag1+tag2

How to add single rewrite rule for- www.foo.com/tags/tag1 --> www.foo.com/Pages/Articles/ArticleListing.aspx?tags=tag1 www.foo.com/tags/tag1+tag2 --> www.foo.com/Pages/Articles/ArticleListing.aspx?tags=tag1+tag2 www.foo.com/tags/tag1+tag2+tag3 -->…
Parag Meshram
  • 8,281
  • 10
  • 52
  • 88
0
votes
1 answer

Helicon ISAPI Rewrite + ASP.NET : Rewrite rule to redirect to default page?

How do i rewrite URL like: http://subfoo.foo.com/ --> http://subfoo.foo.com/Pages/Home.aspx
Parag Meshram
  • 8,281
  • 10
  • 52
  • 88
0
votes
2 answers

Helicon ISAPI Rewrite + ASP.NET : How to remove . aspx extension?

How do i remove .aspx extension like: http://www.foo.com/bar --> http://www.foo.com/bar.aspx http://www.foo.com/bar?q=boo --> http://www.foo.com/bar.aspx?q=boo
Parag Meshram
  • 8,281
  • 10
  • 52
  • 88
0
votes
1 answer

IsapiRewrite Lite + Wordpress - Permalinks

I am trying to get Permalinks to work on Wordpress on a IIS Server. I installed Isapi-Rewrite Lite and copied htaccess content into httpd.conf as follows : RewriteLogLevel 9 LogLevel debug # BEGIN WordPress RewriteEngine…
guylabbe.ca
  • 871
  • 2
  • 11
  • 21
0
votes
1 answer

What to include in .htaccess using ISAPI_Rewrite

So im trying to configure caching options in a .htacces file. Problem is im on a windows server using IIS, but my hosting provider has installed ISAPI_Rewrite to work around this. My question Is there anything different in the htaccess file i need…
JayD
  • 6,173
  • 4
  • 20
  • 24
0
votes
1 answer

Do MOD_Rewrite rewrites invoke a second run through the rewrite rules?

When a RewriteRule is executed by MOD_Rewrite will all the MOD_Rewrite rules be executed again for the newly generated request? Specifically in the following example, will this cause a loop? RewriteCond Host: (?:www\.)?mysite\.com RewriteRule…
Rob Bell
  • 3,542
  • 5
  • 28
  • 49
0
votes
1 answer

ISAPI Rewrite Syntax Help

I have rebuilt a website from php into ASP.NET and need to redirect all the old horrible page URL's to the root of the new site - The old site just used index.php and print.php then LOADS of querystring values - So I have the following…
YodasMyDad
  • 9,248
  • 24
  • 76
  • 121