0
votes
5answers
48 views
What does [L] mean in apache rewrite?
Like here:
RewriteEngine on
RewriteRule ^(.*)\.[\d]+\.(css|js)$ $1.$2 [L]
0
votes
2answers
30 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
35 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
1answer
11 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
28 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
69 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 …
1
vote
2answers
77 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 % …
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 …
0
votes
1answer
19 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 …
12
votes
9answers
633 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 …
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
23 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 …
0
votes
2answers
45 views
htaccess directory
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^admin/([^/]+)/([^/]+).php website.com/admin/index.php?route=$1/$2 [NS]
RewriteRule ^modules/([^ …
0
votes
1answer
275 views
UrlRewriting.Net Regular expression - “Not in string”
hi there,
i may be barking up the wrong tree here but i'm banging my head against a wall trying to write a regex rewrite.
i have two site that are identical but by choice the cli …
