Questions tagged [iirf]

Ionic's Isapi Rewrite Filter is a small, free, easy to use, URL rewriting ISAPI filter for IIS 6.0 and later. It uses Perl-compatible regular expression syntax and can act as a transparent proxy.

Ionic's Isapi Rewrite Filter is a URL rewriting ISAPI filter for IIS 6.0 and later similar to mod_rewrite for Apache.

Features

  • Regular expression matching with Perl-compatible regular expression syntax
  • Automatic configuration reloading
  • Can act as a transparent proxy (like Apache's mod_proxy)
  • Uses .htaccess syntax with some exceptions
  • Open source

Resources

82 questions
0
votes
1 answer

IIRF: exlude QSA parameter from lowercase on rewrite rule

in my config I have: Add trailing slash to url and Lowercase RewriteRule ^/([^.?]+[^.?/])$ /#L$1#E/ [I,R=301] URL LowerCase RewriteRule ^/(.*[A-Z].*)$ /#L$1#E [R=301] rule RewriteRule ^/category/([^\?\/]+)/((\?.+)|())$ /cat.asp?menu=3&set=$1…
Brizio
  • 11
  • 1
0
votes
0 answers

IIR filter simulink block diagram

I have just converted a butterworth prototype LPF to digital domain using bilinear transformation. I'm currently struggling to build the model using basic building blocks like unit delays and gain blocks. Here is the transfer function: H[z] =…
0
votes
1 answer

IIRF not working with ASP.NET postbacks?

I have the following scenario. Web server A: public on the Internet, IIRF (Ionic's ISAPI Rewrite Filter, current version) installed Web server B: not public, on the intranet, visible to A, my ASP.NET web application is installed on, name is…
MNT
  • 1
  • 2
0
votes
1 answer

RewriteCond blank domain to the domain with the correct path

How do I set redirects with following conditions: Url http://domainname.be becomes http://www.domainname.be/nl/ Url http://www.domainname.be becomes http://www.domainname.be/nl/ Url http://domainname.be/nl/custompage/ becomes…
Mivaweb
  • 5,580
  • 3
  • 27
  • 53
0
votes
1 answer

IIRF on iis6 - several domain to one ip redirect to defferent index pages

I can not speak English well :) - sorry~ I have one server hosting. (one ip) and this web server has three index pages. default.asp // s1_default.asp // s2-default.asp I have three domains. aaa.com & two free sub domains. (s1.free.com, s2.free.com…
wideroot
  • 37
  • 6
0
votes
1 answer

Using IIRF to redirect to a PDF

I'm using IIRF to redirect certain URLs to specific PDF files. For instance, for the URL /newsletter/2010/02 I'd like it to redirect to /pdf/newsletters/Feb2010.pdf. I'm not too hot at regular expressions, but I created the following…
Michael Itzoe
  • 1,949
  • 4
  • 29
  • 49
0
votes
1 answer

How to match the + symbol in the URL with Ionics Isapi Rewrite Filter (IIRF)?

I have this rule for a redirect RedirectRule ^/test+test.html /index.html [I,R=301] and the index.html file exists in the root/ of the website however when I visit mysite/test+test.html I get a 404 error, maybe the plus (+) character need to be…
Max
  • 4,965
  • 17
  • 49
  • 64
0
votes
1 answer

How can I redirect a subdomain to a specific URL?

I am updating the Iirf.ini file to redirect sub.columbia.edu to giving.columbia.edu/video. sub.columbia.edu is already redirecting to giving.columbia.edu. How can I go one step further to redirect it to giving.columbia.edu/video. Important Note: I…
Izumi Bérat
  • 173
  • 4
  • 14
0
votes
1 answer

Rewrite Rule not working for Ionics Isapi Rewrite filter

I have following rule in my IIRF.ini. We need to kill this pages now and so i have to give 410 to them. RewriteRule ^(?i)/index.aspx?puid=99AE83F8-D3E6-4F96-88B1-41C8A625D073 - [L] RewriteRule …
jvm
  • 1,662
  • 8
  • 27
  • 46
0
votes
0 answers

upgrade to .net 4.5 and IIRF breaks relative paths processed in code behind

We've recently upgraded our site from .net 2.0 to .net 4.5. For SEO purposes we use ISAPI filters to convert urls which look like this: MainSite/directory/virginia/richmond.aspx…
0
votes
3 answers

IIRF redirect combine rules?

I have 3 "rules". One to make sure URLs are lowercase another to include a slash at the end of directories, and a 3rd to force access to index.html pages to be thru the directory instead. The problem w/ how I have it is, sometimes this is causing…
Phill
  • 1
  • 1
0
votes
1 answer

IIRF - How to send a 410 Gone response

I am trying to use IIRF (Ionics Isapi Rewrite Filter V 2.1) to send a 410 Gone [G] response for URLs that contain the following string, but am very new to IIRF and regular expressions so a little lost as to how to properly form the rule. I want to…
0
votes
1 answer

Rewrite/Redirect URL using IIRF

IIS 6, using IIRF. I'm not sure if this would be a rewrite or a redirect. We've got a new site and need to 301 redirect old page to new and keep the query string value only. I need the following rewrite rule. This stuff is kind of hard to work…
jacton
  • 3
  • 4
0
votes
1 answer

IIRF Redirection

I'm just trying to figure out what the following block of code is doing with a URL so I can locate the file that its dealing with. Can anyone help me out? RewriteCond %{HTTP_URL} !/*.deploy?(.*) …
connorbode
  • 3,015
  • 1
  • 28
  • 31
0
votes
1 answer

Apache Url Rewrite Query String SEO

I have the following rewrite. RewriteRule ^/news/([a-z0-9\-]+)/([a-z0-9\-]+)/?$ /pagebase.php?pbid=3656&nid=$1&title=$2 [QSA,L,I] http://www.domain.com/news/1/new-event/ So that the above url will be rewritten as:…
TroySteven
  • 4,885
  • 4
  • 32
  • 50