Tagged Questions
ISAPI_Rewrite is a URL rewriter for Microsoft IIS, from Helicon Tech.
5
votes
1answer
2k views
Isapi filter not working on IIS 7 (which did work on IIS 6)
I have an Isapi dll which performs some basic URL rewriting. It works fine on II6. However, now my dev machine has been upgraded to Windows 7, I cannot get it to work under IIS 7
Is there anything ...
5
votes
4answers
3k views
Can I do an if/then/else in htaccess?
I have a site that serves up certain content based on the subdomain. So it is the same set of files, and maybe the header and some info in the site pages changes based on the subdomain.
I need to ...
5
votes
7answers
2k views
Redirecting non-www URL to www
I'm using Helicon's ISAPI Rewrite 3, which basically enables .htaccess in IIS. I need to redirect a non-www URL to the www version, i.e. example.com should redirect to www.example.com. I used the ...
4
votes
3answers
133 views
Why is /eurl.axd/Gibberish being tacked onto the end of my pages?
I've been working to get our site moved to a public beta server, and after we configured IIS to match the internal testing server I noticed this problem. The application still works but it has this ...
3
votes
2answers
630 views
ISAPI rewrite on IIS Express
With the release of Visual Studio 2010 SP1 and IIS Express we want to run our asp.net 3.5 websites on that instead of our iis5 instance on our local developement machines.
All of our code runs fine ...
3
votes
5answers
362 views
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 ...
3
votes
2answers
2k views
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/ ...
2
votes
1answer
160 views
IIS Rewrite Not Working
I'm trying to get URL rewriting working but having problems. I have several rules set up with BlogEngine.NET and I want to redirect several pages to a "Coming Soon" page. Despite being able to access ...
2
votes
1answer
211 views
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 ...
2
votes
1answer
394 views
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 ...
2
votes
2answers
477 views
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 ...
2
votes
4answers
186 views
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 ...
1
vote
1answer
52 views
ISAPI_Rewrite 3.0 … Noob … how to get started? just installed
just installed v3 lite to try it out before getting full version.
i got the follwing in .htaccess file in the root folder of the .net web app
RewriteEngine On
RewriteCond %{HTTPS} (on)?
RewriteCond ...
1
vote
3answers
200 views
LinkButton OnCommand or OnClick Not Firing
I'm trying to do something that seems to be fairly simple. I have a user control with several LinkButtons. Each LinkButton has OnCommand, CommandName and CommandArgument set, like so:
<ul ...
1
vote
3answers
296 views
Faulting application name: w3wp.exe on IIS7 and PHP Windows Server 2008 x64
I try to run a website with Helicon Isapi Rewrite 3 on a Windows Server 2008 R2 x64 with IIS 7.5 installed. The website is using PHP 5.2.16 on ISAPI mode. I use the request_uri.php solution (see code) ...
1
vote
1answer
313 views
How to redirect Query Strings with ISAPI Rewrite?
I'm using the following lines in my httpd.ini file to redirect users who access example.com to www.example.com:
RewriteCond Host: (?:www\.)?example.com
RewriteRule (.*) http\://www.example.com [RP,L]
...
1
vote
2answers
86 views
url rewrite regex question
My regex expression for isapi rewrite here isn't passing variables in the URL
Trying to pass a variables like: www.domain.com/z34232/ProductName.html?ref=magic
But the code is ignoring the ...
1
vote
1answer
92 views
Need to make one RewriteRule play nicely with another, embarrassingly weak understanding of the principles of mod_rewrite standing in the way
I have the following system:
Windows Server '03
IIS 6 (shoot me)
PHP 5.2.14
Wordpress 3.0.1
WPML 1.8.1.2
I've added Wordpress to an existing high-traffic site, in a directory we'll call
...
1
vote
1answer
77 views
Migrating from ISAPI Rewrite to Mod_REwrite
I'm currently using ISAPI Rewrite
I'd interesting in moving my ColdFusion app to Apache and would therefore like to use MOD_Rewrite. Is this possible? Or do I need to rewrite all the rewrites?
1
vote
3answers
499 views
Redirecting URL without www to www
I need your help. I want to test if the URL is entered without www
like example.com it should be forwarded to www.example.com.
1
vote
2answers
60 views
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
...
1
vote
1answer
666 views
ISAPI ZEND url rewrite adding extra “/index.php/” into url
We recently reinstalled our web site on our server, the sys admin says it is an exact rebuild, and it indeed looks to me that it is, but there is something different going on. I did not originally ...
1
vote
1answer
452 views
Passing Non Existing Directory As a parameter in IIS or Apache
First look at this url:
http://stackoverflow.com/questions/tagged/xoxoxo/
This directory does not exists but somehow stackoverflow can pass that last directory as a parameter to his base script.
Is ...
1
vote
2answers
142 views
ISAPI_Rewrite ver 3.0 mapping
I want to implement the mapping issue of this tool and I cannot make it work. This is the rule:
RewriteBase /
RewriteMap mapfile txt:mapfile.txt
RewriteRule /([^?/]+)\.asp ...
1
vote
1answer
191 views
Can I write ISAPI filters in Perl?
I need to write an ISAPI filter for IIS 6.0 to rewrite ugly URLs into SEO-friendly URLs. Because of the need for string parsing and regular expressions, I'd prefer to use Perl to do this. There is a ...
1
vote
1answer
905 views
Isapi Rewrite upgrade from 2 to 3 - query string not available?
A little late but I just upgraded from Isapi Rewrite version 2 to version 3.
I'm having problems with rules in the following style:
RewriteRule ^/seo-friendly/(\?(.*))? ...
1
vote
2answers
936 views
Excluding a directory with ISAPI-Rewrite
I am trying to exclude a directory with ISAPI-Rewrite (note: this is a windows/iis port of mod-rewrite).
The directory I want to exclude is "api" when it is at the root of the site.
Here is my rule:
...
1
vote
3answers
453 views
Are there any gotchas for url re-writing a ColdFusion site with ISAPI_Rewrite v2?
I've been asked to help out with some ColdFusion development and one of the tasks will be to undertake url re-writing, mostly turning url parameters into a cleaner url.
The site is on a hosted ...
1
vote
4answers
179 views
1 domain two separate applications
http://www.one.com
and
http://www.one.com/uk
www.one.com is the main site, but there is a UK version of this site which ideally needs to be in a subdirectory (/uk).
How do set IIS up to allow me ...
1
vote
2answers
2k views
ISAPI_Rewrite In IIS 7
I've been using ISAPI_Rewrite from Helicon (http://www.helicontech.com/isapi_rewrite/) on a Server 2003 box for years and have always had good luck with it.
I'm migrating all the sites on the 2003 ...
0
votes
1answer
36 views
coldfusion and isapi rewite: removes percent-encoded values from url
I am currently working on a 404 handler for our server, however, am getting some weird issues with percent-encoded URLs (i.e. when %20 is used for a space). We are using the ISAPI Rewrite app along ...
0
votes
2answers
17 views
htaccess and POST requests
I'm using ISAPI htaccess rule on my website.
I opened fiddler and saw an ajax post request with content in its body.
then the client got 302 redirect (htaccess rule),
but this second request was ...
0
votes
2answers
25 views
How do you use rewritecond with a lookup in a map
I have a map that I use to rewrite urls in my asp.net MVC application. I would like this rule to be conditional on the presence of the lookup value in the map.
RewriteMap contentmap ...
0
votes
1answer
21 views
ISAPI Rewrite rule changing https request to http one, for specific page
What should look isapi rewrite rule which can change https to http for a specific page, ex:
https://www.portal.com/mypage to http://www.portal.com/mypage
Regards
0
votes
1answer
33 views
ISAPI Rewrite if file with .ext exists then allow it as a folder URL
I am trying to do the following...
If a page called login.asp exists then allow a rewrite for it as /login/ but do not allow a direct access to login.asp.
Here is my code so far.
# Helicon ...
0
votes
1answer
82 views
ISAPI Rewrite RewriteRule for domain root username URLs
I am trying to create a root username using ISAPI Rewrite.
E.g. www.mysite.com/myusername
I want this to redirect to...
/user.asp=myusername
Then if the username is not found to load content ...
0
votes
2answers
50 views
MVC3 .net 4.0 extensionless urls and isapi_rewrite
Unfortunatly I am forced to use IIS6 for my MVC website. .net 4.0 adds functionality to mimic the stupid hack for getting extensionless urls to work in IIS6. My website is designed to take advantage ...
0
votes
1answer
64 views
How to install Symfony2 on IIS with ISAPI_Rewrite
I'm stuck with IIS6 for a specific project and I am having difficulty using ISAPI_Rewrite. I use the symfony1 guide, installed ISAPI_Rewrite3 and I am trying to install a project as a subdirectory ...
0
votes
0answers
21 views
Apache Mod Rewrite rule
Hello I'm trying to do a Mod rewrite rule using ISAPI_REWRITE component on IIS6 like:
http://www.domain.com/category.asp?brand = Emporio Armani
and
http://www.domain.com/category.asp?brand = ...
0
votes
2answers
56 views
Helicon ISAPI rewrite
I'd like to add cache and expires headers for all my .js files because I'm not able to do it on my server. I'm using IIS. How might I do this?
0
votes
1answer
50 views
Anyone get CakePHP 2 to work on IIS 5.1 with Helicon ISAPI_rewrite?
I'm trying to get CakePHP 2.0 to work on my Win2k laptop at home but have been stymied by mod rewrite issues. For previous versions of Cake (1.2, 1.3) I used ISAPI_rewrite with the following rule (my ...
0
votes
1answer
70 views
Create a 301 redirect using ISAPI Rewrite for IIS
I have created this one and it works,
RewriteRule shoppingcart.aspx ViewCart.aspx [NC,R=301]
I'm trying to get this to work,
RewriteRule search.aspx?advanced=1 AdvancedSearch.aspx [NC,R=301]
...
0
votes
1answer
29 views
rewrite subdomain to domain
I have a request that would look something like this http://cariers.example.com/style/all.css that would need to be rewritten to http://www.example.com/style/all.css. The request could be anything ...
0
votes
1answer
84 views
How to combine flags using RewriteCond?
I am using ISAPI-Rewrite on IIS7.
How can we combine [NC] and [OR] in a RewriteCond ? [NC,OR] ?
What is the simple way to match domains with and without "www." ?
Here is a draft :
RewriteCond ...
0
votes
1answer
49 views
URLs are inconsistently being redirected using ISAPI urlrewrite 3.0
I'm trying to create some friendly urls.
search/real
searc/tpp
everything is working fine except the browser changes to reflect the unfriendly url. Even though I am not specifying a redirect. ...
0
votes
1answer
46 views
simple 301 redirect with ISAPI_Rewrite
i need to reditrect
this url
http://www.mydomain.com/folder/Templates/ShowPage.asp?DBID=1&LNGID=1&TMID=10000&FID=579
to
...
0
votes
1answer
57 views
ISAPI Rewrite Syntax To Stop Image Hotlinking
I have followed a couple of tutorials for adding rules in ISAPI to stop image hotlinking for a website I own.
I have added this
RewriteCond Referer: (?!http://(?:www\.mydomain\.co\.uk)).+
...
0
votes
1answer
92 views
Zend Framework on IIS6 with ISAPI Rewrite
I'm trying to move a zend application from Apache2 to IIS6, so I decided to install ISAPI Rewrite 3 as recommended here, so I copied the hole app folder to c:\inetpub\wwwroot\ and made the IIS Default ...
0
votes
1answer
35 views
Matching <script> or <iframe onload in querystring
i am facing xxs problem and i am using ISAPI Rewite 3. I want to detect if a querystring contains ... or redirect it to my home page.
0
votes
2answers
84 views
Alternate solution for htaccess in ASP
I have a shared hosting account and don't have access to IIS server, so can not install ISAPI_Rewrite on server or any other rewrite solution.
Website language is in classic ASP and want to create ...