1
vote
2answers
18 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" to …
2
votes
1answer
72 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 prot …
0
votes
1answer
18 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 …
0
votes
5answers
62 views
What does [L] mean in apache rewrite?
Like here:
RewriteEngine on
RewriteRule ^(.*)\.[\d]+\.(css|js)$ $1.$2 [L]
0
votes
2answers
63 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; …
0
votes
2answers
35 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/' . …
0
votes
2answers
1k views
Combining UrlRewriteFilter and struts 2 with get parameters
Following up on an older question of mine, I managed to get URL Rewriting working somewhat correctly for my struts project where URLs like search?q=blah get converted to queries se …
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?
2
votes
5answers
2k views
How to rewrite an URL on a JBoss server?
I would like to redirect/rewrite this two kinds of URLs:
mydomain.com -> newdomain.com
mydomain.com/specificPage -> newdomain.com/newSpecificPage
mydomain.com/anyOtherPage -> myd …
12
votes
9answers
643 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 URLRew …
1
vote
0answers
54 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 Windo …
0
votes
1answer
79 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.asp …
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: www.sampleweb.c …
0
votes
1answer
29 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 yo …
0
votes
1answer
27 views
xampp redirects
Hi guys, does anyone has an example how to do a rule in .httpaccess in xampp? I m trying to redirect from localhost/test/company.php?name=Abc to localhost/test/company/Abc and I ca …
