3
votes
4answers
98 views
How to elegantly handle ReturnUrl when using UrlRewrite in ASP.NET 2.0 WebForms
I have a folder with multiple .aspx pages that I want to restrict access to. I have added web.config to that folder with <deny users="?"/>.
The problem is that ReturnUrl is auto-generated with …
2
votes
1answer
198 views
Rewrite spring-security redirect URLs
I'm trying to get Tuckey UrlRewriteFilter to tidy up URLs for my webapp. One problem I've got is that when spring-security notices that an anonymous user is trying to access a protected resource it …
0
votes
5answers
76 views
What does [L] mean in apache rewrite?
Like here:
RewriteEngine on
RewriteRule ^(.*)\.[\d]+\.(css|js)$ $1.$2 [L]
1
vote
2answers
24 views
URL Rewriter not grabbing the exact match
I'm implementing some url rewriting using UrlRewriter.
So going to http://domainname/11
will go to ~/Items/Details.aspx?Itemid=11
<rewriter>
<rewrite url="~/1" …
0
votes
2answers
103 views
Nginx rewrite non-www-prefixed domain to www-prefixed domain
I see the Nginx HttpRewriteModule documentation has an example to rewrite a www-prefixed domain to a non-www-prefixed domain:
if ($host ~* www\.(.*)) {
set $host_without_www $1;
rewrite ^(.*)$ …
0
votes
1answer
22 views
Keep old URLs when implementing UrlRewriter.net
I added UrlRewriter.net to my site today and it works fine with redirecting my SEO links to actual pages. The question is if there is any way to keep my old links in site and have ResolveUrl() using …
0
votes
2answers
42 views
URL Aliasing using .htaccess
i'm having 'domainname1/folder/' .In Domainname1 i'm having a subdirectory which is a subdomain (abc.mydomain.com) of other domain. but this is referred to 'domainname1/folder/' . the thing is that i …
0
votes
1answer
15 views
How to keep original parameters after url_rewrite?
I'm now doing this:
rewriterule ^jobs/([0-9]+)/.* job.php?id=$1
Which will erase parameters in jobs/1010/title?k=v
How to keep them?
1
vote
0answers
73 views
IIS 5.1, HttpHandler based on path, NOT Working. Is it possible to fix with IIRF?
I have a reverse proxy written in C#/ASP.NET. After adding a Wildcard Mapping in IIS6 it works just fine. My problem is that I have to make this application compatible with Windows XP and IIS 5.1. …
0
votes
1answer
89 views
Very strange URL rewrite problem?
I am rewriting the url http://www.tworiverstaines.co.uk to http://www.tworiverstaines.co.uk/TwoRivers/
When the site first loads the rewrite works correctly displaying Default.aspx with all the …
1
vote
2answers
95 views
UrlRewriteFilter equivalent for mod_rewrite
Hi gentlemen
I want to do Url rewrite in Tomcat using UrlRewriteFilter
This is the rule would like in mod_rewrite apache
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} …
0
votes
1answer
40 views
URLRewriting challange
I'm using URLRewritingNet 2.0. How do I rewrite URL's in ASP.NET?
I request is here >>
Input: www.sampleweb.com/param1/value1/param2/value2/default.aspx
Output: …
12
votes
9answers
652 views
What Url rewriter do you use for ASP.Net?
I've looked at several URL rewriters for ASP.Net and IIS and was wondering what everyone else uses, and why.
Here are the ones that I have used or looked at:
ThunderMain URLRewriter: used in a …
1
vote
1answer
27 views
htaccess question
This is a simple htaccess question for experts but I have been trying to get this sorted for a while. This was something a developer did before my time with this code. He truncated the image file …
0
votes
1answer
36 views
url rewriting for asp.net under mono xsp2
I'm trying to do some asp.net development on a Mac right now and i'm having trouble finding a urlrewriting library that works fine under mono (and the xsp2 webserver)
Of course you could write your …
