An rule-based URLRewrite filter for Java Servlet technologies, similar to apache's mod_rewrite.

learn more… | top users | synonyms

0
votes
1answer
32 views

How to access the current page url typed in jsp?

I use .htaccess file for url rewritting.To enable .htaccess file I put the urlrewritefilter-4.0.3.jar file inside WEB-INF\lib\ and inside web.xml I have added the following code. <filter> ...
1
vote
0answers
30 views

How to configure url maping in tuckey-urlrewrite-filter?

I have some page about.jsp, contact.jsp, user.jsp, index.jsp in a folder projects under webapps root. I use tuckey-urlrewrite-filter for url mapping. I used url writing as <rule> ...
0
votes
0answers
20 views

URLRewriteFilter blocks POST values

I have written this rule <rule> <condition type="request-uri" operator="notequal">^/admin/(.*)$</condition> <condition type="request-uri" ...
1
vote
0answers
21 views

How to have a Tuckey rewrite that preserves base path?

Ok, I have these URLs http://myhost/dogs/Images/cutest_ones http://myhost/cats/Images/cutest_ones I want them to be translated to http://myhost/dogs/imagescontroller.pwa?filter=cutest_ones ...
0
votes
0answers
67 views

Spring security - dispatcher forward with tiles

I'm using spring security 3 with tiles 2. When I added <dispatcher>FORWARD</dispatcher> to spring security filter mapping, I noticed that spring started secure tiles forwards to layouts. ...
0
votes
0answers
29 views

URLRewriteFilter - pointing subdomain to subfolder

Currently all my domain requests are being directed to www using the following URLRewrite Rule: <rule> <name>Canonical Redirect</name> <condition name="host" ...
0
votes
1answer
46 views

Use Tucky UrlRewriteFilter to hide .jsp at the end of urls

I would like to simple hide the .jsp file extension at the end of all my urls for my Java web app. I've already gotten Tucky UrlRewriteFilter integrated using Maven, but I cannot figure out the magic ...
0
votes
1answer
47 views

Tuckey URL: Redirected url is outputted twice

I have the following redirect in place: <rule> <condition name="host" operator="equal">^(www.)?test.redirect.com$</condition> <from>^?</from> <to ...
0
votes
0answers
20 views

Tomcat serve zipped xhtml file

I have XHTML file that compressed with GZIP. I need to serve it correctly for browser with Tomcat. How i did it with Apache HTTP Server: <Files *.xhtmlz> AddEncoding x-gzip .xhtmlz ...
0
votes
0answers
52 views

Rule always called in UrlRewriteFilter

I was trying to use UrlRewriteFilter but I was having some problems on defining two simple rules. This is what I would like to have: when a user points an url like /p/XXX.do this will match /XXX.do ...
0
votes
0answers
55 views

Making $1 uppercase in substitution

I'm trying to move our web-based help files from an existing IIS server onto an instance of Tomcat, because we need TomCat for a specific application. I know I could probably plug tomcat into IIS, but ...
3
votes
2answers
212 views

How to permanently redirect JSP with parameters using urlRewriteFilter?

We are moving old JSP based web application to Spring MVC controller and using urlRewriteFilter (http://tuckey.org/urlrewrite/) for redirects. We need to permanently redirect old JSP with parameters ...
1
vote
0answers
54 views

Could I replace URLRewriteFilter with Rewrite?

One of my projects use URLRewriteFilter. URLRewriteFilter has a xml rewrite file. The Rewrite gives me a in-code-configuration. It's a more ellegant way to configure for me. But they do not have ...
0
votes
0answers
68 views

Coldfusion 10 / Tomcat URLRewriteFilter issue with existing file detection

Currently we're trying to use URLRewriteFilter to replicate the following apache mod_rewrite rules, but in the Tuckey docs I can't seem to find anything that would appropriately detect if a file ...
0
votes
1answer
58 views

Redirect URL after showing notice page

I am using a TomCat server and need to transition to a new location. I am going to leave a TomCat instance on the old server temporarily in order to gracefully forward old links. I have found tuckey's ...
0
votes
1answer
189 views

How can I redirect from one url to another using Tuckey URL rewriting?

I've two domain names e.g. www.1st-domain.com and www.2nd-domain.com I want to write a Tuckey URL Rewrite rule to redirect any request that goes to www.1st-domain.com to www.2nd-domain.com E.g. if ...
1
vote
0answers
130 views

UrlRewriteFilter won't redirect URLs below root

I want to set up a 302 redirect. I am serving a webapp from apache-tomcat-7.0.30/webapps/myapp. I am trying to use Tuckey's UrlRewriteFilter, but haven't been successful in getting redirects ...
1
vote
0answers
118 views

Url rewriting using UrlRewriteFilter

I have a website with pages serving dynamic content using query string. Ex: www.example.com?param1=abc&param2=xyz I want to rewrite this url so that users and search engine should see the page ...
-1
votes
1answer
101 views

Abnormal behaviour of URL Rewrite Filter

I am using Tuckey URLRewriteFilter. In my application, I have the following pages and button: Page inside.xhtml which is inside the context of the app: http://example.com/app/inside.xhtml Page ...
0
votes
1answer
119 views

Tuckey UrlRewriteFilter - redirects in the root but not subdirectories?

I'm using the Tuckey UrlRewriteFilter with Tomcat 7. I would like to shorten a bunch of URLs in the root folder but without messing up the subfolders etc... e.g. I have something like... / ...
0
votes
1answer
61 views

The Request URL is being called twice when using URLRewrite Filter

I am using Tuckey URL Rewrite filter. I have installed it on my Google App Engine (Java). and it is working well besides one annoying thing. Apparently when the request URL is re-written and handled ...
0
votes
1answer
99 views

Is the url been rewritten? tuckey - urlrewrite

I use http://tuckey.org/urlrewrite/ library I am trying to detect if the URL of the page has been rewritten or not, I come up with something like this: ...
0
votes
1answer
161 views

Escaping Question Mark in Tuckey Url rewriting (XML/Regex)

I want to permanent redirect /?industry_id=3 to /industry/3/athletics I tried the rules : <rule> <from>/?industry_id=3$</from> <to type="permanent-redirect" ...
0
votes
1answer
157 views

Url Rewriting Regex - no match

I have this regex for an url rewriting: <from>^/page/([0-9]+)/order/(.*)/by/(.*)/composition/(.*)/location/(.*)/price_min/(.*)/price_max/(.*)/industry/(.*)/type/(.*)$</from> ...
0
votes
0answers
127 views

urlrewritefilter not redirecting

I'm trying to implement what seems like a very simple redirect with urlrewritefilter as follows but it is not redirecting. <rule> <from>/?industry_id=22</from> <to ...
6
votes
1answer
357 views

Stopping Jetty from throwing stacktrace whenever it receives an invalid HTTP request

I am running my servlet application within Jetty, and it sometimes outputs the below-shown stack trace. I think this means it is receiving an invalid URL request, but I can't actually see the request. ...
0
votes
0answers
31 views

First request passes null parameter when using urlrewriter tucky filter with tomcat

I am using urlrewriter filter in liferay6.0 with Tomcat server. For every first request error page is opened giving null-pointer exception in background says parameter null. Next request onwards it ...
1
vote
1answer
169 views

Difference in the parameters between Liferay Resource and Action URLs

I need to create a custom url filter (with tuckey.org) for resource URL in liferay portal, but I don't know how to distinguish URL created by liferay with @ResourceMapping annotation and the same ...
0
votes
1answer
129 views

URLrewriteFilter tuckey redirect

I am trying to use UrlRewriteFilter to do a redirect. As we are moving servers and infrastructure all the time to develop our in house cloud solutions we plan to use a lot of this. My problem is I ...
0
votes
1answer
152 views

What causes Tuckey's UrlRewriteFilter to malform urlencoded unicode characters (e.g. %C3%B6 for ö) and how can I avoid it?

We are using a simple UrlRewriteFilter rule to permanently (301) redirect HTTP requests without trailing slash to the same URL with trailing slash. In some cases our presentation layer needs URLs ...
0
votes
0answers
104 views

Tuckey URL rewrite.Need clean url

I have a url something like http://localhost/myapp/myservlet.do?uid=100 Now the url I am looking for is as below http://localhost/myapp/mymainlevel/myservlet/100.jsP For existing url,I have a ...
0
votes
0answers
60 views

Tuckey Canonical Rewrite

<rule> <name>Canonical Hostnames</name> <condition name="host" operator="notequal">^www.mydomain.com</condition> <condition name="host" ...
0
votes
1answer
137 views

Rename query string parameter if it exists

I'm trying to use Tuckey's UrlRewriteFilter to rename a query string parameter if it exists. I want to rename "foo" to "bar". Examples: /hello/hey/?foo=123 should be /hello/hey/?bar=123 ...
-1
votes
2answers
100 views

How to access pretty URL from code

I am using UrlRewriteFilter to make my URLs "pretty". From within my application I frequently need to access the current URL. I do it like this: ServletActionContext.getRequest().getRequestURI(); ...
0
votes
1answer
102 views

tuckey-urlrewrite not working with maven

My project was on ant and working fine. Thought of moving it to maven even including tomcat as dependency so that I do not have to install tomcat separately. When I execute mvn tomcat:run ; it is ...
1
vote
2answers
200 views

Regex to rewrite urls with one or more key/value pairs

Can you suggest a regular expression to rewrite the following url: http://intranet/myApp/index.cfm/go:welcome.home/fruit:orange/car:ford/age:37/music:rock to this: ...
0
votes
0answers
139 views

Urlrewritefilter rule for redirecting request

i simply want to redirect request from http://localhost:8181/http-bind to http://localhost:5280/http-bind following is my rule in urlrewrite.xml: <from>/http-bind</from> ...
2
votes
0answers
173 views

regex javax.servlet.Filter with Tuckey's UrlRewriteFilter

Can Tuckey's UrlRewriteFilter (http://tuckey.org/urlrewrite/) filter requests through additional javax.servlet.Filter's? The true problem is that web.xml's filter-mapping doesn't allow regex. I ...
2
votes
1answer
148 views

How do I rename a parameter with Tuckey urlrewrite?

I'm using the Tuckey urlrewrite filter with use-query-string set to the default (false). This means that the from urls don't use the query parameters to match. What I'd like to do in an isolated case ...
6
votes
1answer
149 views

FORM scope always empty? URL scope is fine?

I'm running a legacy CF Fusebox 5.5 app within Railo 4.0.2.002 Express with Jetty 8 on Mac OS X 10.8 with java 1.7. I'm also using jetty urlrewrite http://tuckey.org/urlrewrite/ (if that's relevant) ...
0
votes
0answers
67 views

Reroute Request from java class as HTTP request

We are writing new service in our team . In this service we want to do some throttling , request validation , authorization and some stuff . Finally we want route the request to appropriate end-point ...
1
vote
1answer
225 views

Redirect non www URL to www URL using Spring MVC

I want to redirect all non-www requests to my domain (e.g. http://domainname.com to http://www.domainname.com). I know I can use Tuckey UrlRewriteFilter but I wanted to know if there's an inbuilt way ...
0
votes
0answers
182 views

Renaming a URL using UrlRewriteFilter

My current url look like this http://www.mydomain.com/app/authenticate i want to remove "authenticate" from the url, "authenticate" is a uri which i am appending onclick of some button I am using ...
3
votes
2answers
335 views

Wordpress-like Urlrewriting in JSP, Tomcat with Urlrewritefilter

I am developing a simple cms for an online health magazine using JSP,Tomcat and urlrewritefilter for url rewriting. I am migrating content from wordpress and should keep the permalinks on the site. ...
0
votes
1answer
290 views

URLRewriteFilter rule append to url 2 times

I am facing some weird issue . Executing one rule ( last rule ) is putting to url to times before forwarding which is giving me 404 error . web.xml content <filter> ...
0
votes
3answers
315 views

struts2 redirecting to default action when working with tiles

i have index.jsp like this <% response.sendRedirect("home.action"); %> i want to invoke that action like http://localhost:8080/Myapp but i want to remove index.jsp and i tried with ...
0
votes
0answers
158 views

redirect request from one webapi to other webapi using tuckey-urlrewrite-filter in tomcat

I'm a newbie to tomcat. I've installed tomcat on my unix system using the tar.gz distribution. I want to redirect request to one(let's say XYZ) of my apis to other(let's say ABC). So the request ...
1
vote
1answer
163 views

Filter chain in URLrewrite filter

I'm using Tuckey's URL rewrite filter combined with a Home grown security filter. The URL rewrite filter is mapped over /* The security filter is mapped over '/*' Also, the URL rewrite filter has ...
0
votes
0answers
163 views

URL rewrite drop optional parameter and redirect

I am trying to rewite url. I am using tuckey on the server Below 2 url is same thing as it is mapped to each other http://www.test.com/mytest/testurl.do http://www.test.com/y/type/ ...
2
votes
2answers
168 views

Tuckey Urlrewriter changes url requests for JS & CSS resources

I'm trying out Tuckey's URLRewriter. I declared one simple rule, as follows: <rule> <from>/user/([0-9]+)$</from> <to>/user.do?id=$1</to> </rule> I would ...

1 2 3