Tagged Questions

2
votes
1answer
81 views

How to rewrite urls that have an accidental %20 at the end?

I wound up with a bunch of backlinks to my site that have the correct url, except there was an accidental trailing space so the links came out with a trailing %20, which causes a page not found error. ...
2
votes
2answers
766 views

How can I test if IIRF works?

http://www.codeplex.com/IIRF/Thread/List.aspx My webhost installed IIRF for me and I am convinced that they did not do it correctly. I've tried numerous examples including one that I know works with ...
1
vote
1answer
40 views

iirf {REQUEST_FILENAME} issue

I have the following iirf rules for my web application RewriteFilterPriority HIGH RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d ...
1
vote
2answers
639 views

RewriteCond Check if file exists in a subdirectory

I'm using Iirf v2.0. I have the following directory structure: / /library /library/index.php /webroot /webroot/images /Iirf.ini Where I have a library folder which contains my application, a ...
1
vote
2answers
2k views

IIRF URL rewrite to force www prefix: example.com -> www.example.com

I'm trying to do something pretty simple in iirf. I want all requests that are missing the www. prefix to have it added. This is my IsapiRewrite4.ini: RewriteCond %{HTTP_HOST} ^example\.com$ [I] ...
0
votes
2answers
52 views

mod_rewrite with multiple variables

I have a URL like so: http://localhost/deals/?search=fred that redirects to index.cfm?path= When I use mod rewrite the URL parameter becomes path = /deals/?search=fred I currently have ...
0
votes
2answers
612 views

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 ...