Google Code Exporter
Google Code Exporter
``` What steps will reproduce the problem? 1. / /index 2. $ curl -I http://localhost:8080/ What is the expected output? What do you see instead? =Expected= Like the implementation of...
``` What steps will reproduce the problem? 1. RewriteRule ^/oa/(.*) http://www.somedomain.com/oa1/$1 [R=301,L,QSA] 2. use against a url: www.somedomain.com/oa/bob?test=hello 3. currently get: www.somedomain.com/oa/bob?test=hello&test=hello 4. Removing the [QSA] flag leaves it with...
``` What steps will reproduce the problem? 1. RewriteCond %{HTTPS} !=on RewriteRule ^/oa/(.*) https://www.somedomain.com/oa/$1 [R=301,L,QSA] What is the expected output? What do you see instead? the !=on should only apply...
``` What steps will reproduce the problem? Referring to Conditions Based On URL Parameters, I’ve done something using UrlRewriteFilter which is actually required to make my site Google crawl-able. Here’s...
``` After upgrading from 3.2.0 to 4.0.3 urlrewritefilter is unable to recognize my variables. With an entry like this in urlrewrite.xml: %{cookie:cookie_name} I used to see either the cookie contents...
``` I am using OCP URL Rewrite tool and Struts2 in my application. All the Struts Action links are working well but when I click on non-action links i.e.plain anchors...
``` What steps will reproduce the problem? 1.Make a simple .war with only one dependency of urlrewritefilter; configure rules to forward between different contexts 2. Upload above one .war, with...
``` I want to redirect user's request url like http://site/a/index.html to http://a.site/index.html. And further more keep user browser's url not changed. Does urlrewrite(http://www.tuckey.org/urlrewrite/) support this? How should I implement this?...
``` I need to add my own properties to urlrewrite.xml. I can extend org.tuckey.web.filters.urlrewrite.substitution.VariableReplacer but the library does just new VariableReplacer(), without any configuration or dependency injection. Therefore I'm stuck...
``` What steps will reproduce the problem? 1. Place config file under /WEB-INF/classes/conf 2. Configure confPath in filter rule in web.xml as /conf/urlrewrite.xml 3. What is the expected output? The...