Tagged Questions
0
votes
0answers
19 views
web.config not accepting url queries
Below is an example of the code in the web.config document. This method works just fine, but it's only to show that we have it working. We are running IIS 7.5 and MS Windows Web Server 6.1.
...
1
vote
1answer
30 views
Url Rewrite HTTPS -> HTTP except certain page (IIS 7)
Only one page, and all dependencies (css, jpg etc), is to be SSL for now. I created the following rewrite:
<rule name="Not Appointment Form 4.1 SSL" enabled="true" patternSyntax="ECMAScript" ...
0
votes
0answers
29 views
IIS URL Rewrite - include title in URL based on ID
I have an ASP.NET e-commerce application in which product URLs are primarily of the format
<domain_name>/ProductCatalog/Product.aspx?ID=30
I am using IIS URL Rewrite to successfully write ...
0
votes
2answers
53 views
How can I let ASP.Net process some XML requests, but still return physical XML files?
Language: C# 5.0
Platform: ASP.Net 4.5 on IIS 7.5
Operating System: Windows Server 2008 R2 Standard 64-bit
I am working on an old Web Forms application to add XML Sitemaps which are dynamically ...
0
votes
1answer
33 views
IIS dynamic redirect rules
I am writing a number of redirect rules in IIS and need some guidance to make them as dynamic as possible.
I want to have a rule that goes from /foldername/* to /newfolder/foldername/*
And the file ...
0
votes
0answers
27 views
Redirect to www for root domain and virtual directory
I have a domain hosted. Also, there is a sub-virtual directory holding a wordpress blog.
I added a Url Rewrite rule to redirect users to www of the main root domain:
domain.com --> www.domain.com
...
1
vote
1answer
105 views
IIS 7.5 URL Rewrite 2.0 to HTML Page
I have the following rule:
<rewrite>
<rules>
<rule name="FlowURLs">
<match url="^flows/[_0-9a-zA-Z-]+/[_0-9a-zA-Z-]+/([._0-9a-zA-Z-]+)" ...
0
votes
1answer
144 views
IIS7.5: Is there a way to use Require SSL and URL Rewrite Module together for https? [closed]
In IIS7.5, I have a URL Rewrite rule that redirects http requests to https. If I check "Require SSL", I get a 403 Unauthorized instead of a redirect, which makes sense.
Is there a way to use them ...
5
votes
1answer
359 views
How to rewrite URL as subdomain in asp.net without actually creating a subdomain on server
I hope this isn't the first time i'm asking this question on SO.
I've URLs in my website and which are using query string values
For example: http://foo.com/xyzPage.aspx?barvalue=yehaa
to
...
1
vote
1answer
135 views
cakePHP - moved to a sub directory and now the css stylesheets are not working
I have moved the entire cakephp site/app (hosted on a windows server) folder to a subfolder called 'data' all is working fine, the app is working fine except for some reason it's not pulling in the ...
0
votes
1answer
66 views
IIS URL Rewrite - need help rewriting friendly urls for a forum
I'm new to using the URL Rewrite module and I'm having trouble with what I thought would be a simple URL rewrite for forum threads (using IIS 7.5)
I need to rewrite:
/forum/100/2534/friendly-title
...
1
vote
1answer
34 views
IIS7.5 URL Rewrite : do not translate POST to GET
I have a set of URIs with a common base-uri, where the first segment of the relative uri needs to be translated to various ports :
http://base-uri/service1/* => http://base-uri:3000/service1/*
...
1
vote
1answer
168 views
iis 7.5 rewrite to friendly url issues
I'm migrating from apache to iis and i'm facing issues with url rewriting.
i want all requests like this:
http://192.168.0.44/aaa/bbb/ccc/testword
to query this not-friendly url:
...
2
votes
2answers
127 views
when image not found show default image
I have an mvc 4 application running on iis 7.5. The application produces a product catalogue with images assigned to each product.
At times some products do not have any images assigned to them and ...
0
votes
0answers
124 views
assistance needed with iis rewrite rule in web.config
I am working with an mvc4 applciation running in IIS 7.5 and I am having trouble with rewrite rules I have set up. The following is my section from the web.config.
<rewrite>
...
3
votes
2answers
660 views
IIS AAR - URL Rewrite for reverse proxy - how to send HTTP_HOST
Trying to use AAR as a reverse proxy in front of several back end IIS servers.
One public ip address assigned to the server running IIS/AAR
Then outbound URL rewrite rules are setup to redirect to ...
3
votes
1answer
250 views
ASP.NET HttpModule RewritePath virtual directory cache not refreshing
I have an ASP.NET IHttpModule implementation designed to rewrite paths for serving files. The module handles only one event, PostAuthenticateRequest, as follows:
void ...
1
vote
1answer
234 views
IIS 7.5 URL Rewrite encoding
I have following rewrite rule in web.config:
<rewrite>
<rules>
<rule name="Search" stopProcessing="true">
<match url="^search/(.+)$" />
<action ...
0
votes
2answers
111 views
IIS 7 - URL Rewrite - do I include the http or https protocol in the regex?
In IIS 7.5 (Win2k8 R2) I'm trying to create a new rule for these requests:
http://www.domain.com/userprofile
https://www.domain.com/userprofile
http://domain.com/userprofile
...
0
votes
1answer
24 views
IIS URL Re-write module with foreign text
We use IIS URL Re-write module, like this
<rule name="RewriteSearch" stopProcessing="true">
<match url="^Search/([_0-9a-z+-]+)" />
<action type="Rewrite" ...
0
votes
1answer
173 views
URL rewriting won't work unless I add index.php to the query string?
I've been struggling forever trying to understand why I can't get this to work. I have Windows Server 2008 r2 with Helicon APE installed and having several rewrite errors.
Currently, the frontpage ...
0
votes
0answers
195 views
IIS ARR URL Rewrite module not working in integrated mode
I am trying to get the IIS URL Rewrite with Application request routing module working for one of our websites (the module can be found here: ...
0
votes
0answers
180 views
URL Rewrite Map and Wordpress
I am working on a migration from ASP.NET to Wordpress and I want to put 301 redirect rules in place using a Rewrite Map with URL Rewrite in IIS 7.5. I have all the redirects in a file named ...
0
votes
1answer
336 views
IIS url rewrite, broken href (css, js etc)
I am using IIS url rewriting module in asp.net application, my problem is any internal relative references like js, css, images are now pointing to wrong url after this url rewrite, below is my ...
1
vote
1answer
136 views
URL rewrite rule to replace old url .aspx to a new mvc route
I have a webforms website I'm translating to MVC but I want certain url's that have been indexed to find their new url in the mvc site and I'm struggling with the one below:
...
1
vote
1answer
1k views
HTTPS URL Rewrite Rule for Specific Page Using IIS 7.5
I am trying to get URL rewrite in IIS 7.5 to redirect to HTTPS for a "single page".
The rest of the domain should remain HTTP.
To do this, I am editing my Web.config file. Can somebody tell me what ...
0
votes
0answers
24 views
Can't delete urlrewrite rule
Well, when I create a rule on IIS, one like this for example:
if i type localhost/google, it will redirect to google site
till now ok, but, when I delete the rule, and type again, localhost/google, ...
0
votes
1answer
97 views
URL Rewrite pattern to match folder only when NOT preceded by specific folder
Excuse the poor title, but I'm not sure how to word this exactly. Here's my scenario:
I've got this pattern:
(.*)MySpecialFolder(.*)
That I need rewritten to:
...
0
votes
2answers
63 views
Url Rewrite: Should www re-writing be in the app or the web server?
I have to redirect non-www urls to use www. I have a choice of doing this in IIS 7 or code this logic in my ASP.Net application.
In terms of portability I would've thought writing this in the ...
1
vote
0answers
72 views
Limiting Scope on URL Rewrite Outbound Rules
We have set a series of outbound rules to add some URL parameter at the end of every A HREF, AREA, BASE, FORM, FRAME, HEAD, IFRAME, etc. tags. Everything works fine.
The question we have is whether ...
0
votes
1answer
81 views
rewrite url to url:port number
how can I rewrite the next url request:
http://mydomain.com/virtualDirectory/default.aspx?param1=2¶m2=car
to:
http://mydomain.com:8888/virtualDirectory/default.aspx?param1=2¶m2=car
...
0
votes
1answer
928 views
replace ip address with domain name in redirect
I have a Windows Server 2008 R2 virtual machine with IIS 7.5 hosting a ASP.NET MVC4 website. The WinServer has a public ip address. I also purchased a domain name. The domain name hosting company ...
0
votes
0answers
74 views
URL rewrite rule for reporting services
I made some changes in my servers' structure and now I can't access the report server anymore. I have tried to use an URL rewrite rule but I cannot get it to work. Does anyone know how to set the URL ...
2
votes
3answers
322 views
URL Rewriting in IIS 7
I have the existing rule as xml that will rewrite or redirect any request to a specific url to its domain. It won't let any outbound request go out of the domain.
I want to add an EXCEPTION to only ...
1
vote
1answer
334 views
URL Rewrite - A potentially dangerous Request.Path value was detected from the client
I have a number of URL rewrite rules in place (they are all listed below). When I browse "http://domain.com" I am forwarded to "http://www.domain.com/R:" with the message of "A potentially dangerous ...
0
votes
1answer
332 views
URL Rewrite - Redirect to different port and changing URL using map
I want to rewrite URL to redirect to different port, based on HTTP_URL while preserving rest of URL and query string (if specified).
For example,
http://host/john/page.aspx should be redirected to ...
1
vote
1answer
346 views
IIS 7.5 URL Rewrite rule higher priority than folder
I have this rule in web.config.
<rule name="RewriteSourceCategorySuburb" stopProcessing="true">
<match url="(news)$" />
<conditions logicalGrouping="MatchAll" ...
2
votes
2answers
144 views
Displaying colons in Mediawiki URLs on IIS 7.5
After pulling my hair out trying to get my local IIS server to not encode colons in MediaWiki links (turning http://localhost/wiki/Category:People into http://localhost/wiki/Category$3APeople) I'm ...
0
votes
0answers
114 views
URL Rewrite Variable Parameters
I am having an issue getting an IIS 7.5 URL Rewrite rule to work. I imported the following rule from mod_rewrite:
RewriteRule ^(.*?\.php)/([^/]*)/([^/]*)(/.+)? $1$4?$2=$3 [NC,LP,QSA,L]
The rule is ...
1
vote
1answer
605 views
Application Request Routing as Reverse Proxy - Error 500.19 for Absolute URI
I've installed "IIS Application Request Routing (ARR) 2.5" and "IIS URL Rewrite 2.0" on IIS 7.5 in order to create reverse proxy/cache for program listening on localhost.
Problem: URL rewrite ...
1
vote
1answer
186 views
IIIS 7.5 URL rewrite to Geoserver giving Connection Reset error
I have Geoserver set up on a Windows 2008 server using Jetty as the web container on port 8080. If the browse to http://[servername]:8080/geoserver/www/test/test.html I get a html page returned as ...
0
votes
1answer
761 views
Codeigniter 1.7 on IIS 7.5
i wanna ask you for help related to deploy Codeigniter apps on IIS, version 7.5 . I've tried reading other posts here related to Codeigniter and IIS but none of them works. I developed an application ...
0
votes
0answers
398 views
ASP.NET modules not firing in IIS 7.5 with Extensionless Dot URLs
In an ASP.NET 4.0 app running under IIS 7.5 integrated mode, I'm doing URL rewriting in an HttpModule via HttpContext.RewritePath in the BeginRequest event. The incoming URLs are extensionless. It's ...
0
votes
0answers
74 views
IO Exception - ARR IIS7.5 with large uploads
I've made sure the ASP.NET Web application is set up with version 4.0 and accepts 2GB file (maxAllowedContentLength in web.config) uploads. Anyone know where I should look?
I keep getting this error:
...
0
votes
0answers
92 views
URL rewrite to change 2nd level domain but keep sub and top domain
We have an old domain name (on several top domains) that we want to redirect to the corresponding page on the new domain name.
Hence, we want to keep subdomain and topdomain and just change 2nd level ...
0
votes
1answer
389 views
IIS 7.5 Wcf routing service. http header disappears
I have set up a wcf routing service (IIS 7.5) to sit between my winforms clients and a back-end server.
I am trying to resolve a bug which is apparently caused by the disappearance of the http header ...
1
vote
0answers
282 views
IIS Reverse Proxy forwarding Authorization header
We are using IIS Aplication Request routing and URL Rewrite rules to reverse proxy access to an internal webserver.
This works when IIS is configured with Anonymous authentication, but adding Basic ...
2
votes
1answer
467 views
ASP.NET URL-rewriting works in Development Server but not in local IIS
I'm programming ASP.NET using visual studio 2010 and IIS 7.5
I have URL-rewriting in Global.asax (RouteTable.Routes.MapPageRoute). It works in Development Server but not in IIS.
Is there a ...
0
votes
1answer
550 views
IIS 7.5 URL Rewrite rules in web.config does not work
I just moved another site to the server but URL Rewrite rules didn't work. So, I installed URL Rewrite 2.0 from iis.net but no luck.
I can see URL Rewrite icon when I select the site from IIS Manager ...
0
votes
2answers
275 views
How to redirect my Custom URl to specific Port in ASP.Net IIS 7.5
i have created two sites, one is on Port 80 which is default site and other is on port 786, now i want that if the user opens url http://myurl.com/Application, it should open ...

