All Questions
Tagged with request.querystring url-rewriting
5 questions
0
votes
0
answers
239
views
How to implement browser url and query string escaping on server side?
I maintain an asp.net 4.0 application, not MVC, based on some close source and I must implement some anti-xss in query parameters it uses. I can't access all the code and altering all the components ...
1
vote
2
answers
1k
views
IIS rule "http rewrite" causes querystring duplicate
I set an IIS rule to redirect http traffic to https traffic, so I used the http rewrite rule. My original url contains 1 querystring param. When the rewrite is applied my new https url contains a ...
0
votes
0
answers
47
views
unable to get query string value after URL rewriting?
I have this rule in my .htaccess file:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^pages/([a-zA-Z0-9_-]+)$ pages.php?alias=$1 [L]
URL structure is like website/pages/about-us
where about-...
0
votes
0
answers
220
views
ASP.NET: Space in URL
I have a rewrite rule:
<rule name="rule 18X" stopProcessing="true">
<match url="^cheap-calls/(.+)/(.+)/$" ignoreCase="true" />
<action type="Rewrite" url="CheapCalls.asp?calltype={R:...
0
votes
1
answer
285
views
asp.net consecutive are backslashes removed from url
I'm having an issue in my ASP.NET web app where intentionally consecutive backslashes are being removed from the request url.
I'll request something like:
localhost/Page/A//C
But when the request ...