0
votes
1answer
33 views

web.config rewrite rule: rewriting from one query string to another which contains the first

I have a problem as follows: I want to rewrite from /index.php?jobs to /index.php?retail-jobs-in-london and I tried the following rule: <rule name="jobs" stopProcessing="true"> <match ...
1
vote
2answers
80 views

how to lighttpd redirect with querystring

Following url is working fine: http://www.domain.com/address but when I pass any querystring like: http://www.domain.com/address?back=order-opc.php?step=1 It shows 404 page my rewrite: ...
0
votes
1answer
115 views

Apache Url Rewrite Query String SEO

I have the following rewrite. RewriteRule ^/news/([a-z0-9\-]+)/([a-z0-9\-]+)/?$ /pagebase.php?pbid=3656&nid=$1&title=$2 [QSA,L,I] http://www.domain.com/news/1/new-event/ So that the above ...
0
votes
1answer
149 views

mod_rewrite to change query string parameter name

I need help writing a mod rewrite rule to change the name of a query string parameter. I want to change the name, not the value. old name partner new name a_aid so a link like this ...
0
votes
1answer
99 views

IIRF / APACHE Rewrite Conditions Fail with query string

I have a CMS System that converts the ugly URLs into more friendly ones. So far instanstance, instead of the page url being something like this: /pagebase.php?id=3644 I have a url write setup ...
0
votes
1answer
173 views

Rewriting Query String URL in htaccess with 301 Redirect

I have tried to find a solution to my problem in the other asked questions on Stackoverflow, but though there a lot of such questions answered for the exact same question yet it is different because I ...
0
votes
1answer
111 views

How to convert querystring to paths URL using mod_rewrite?

I'm trying to rewrite a URL that has a query string to its SEO friendly name i.e. consider mysite.com/models?p1=v1 I'd like to rewrite it to mysite.com/models/p1/v1 The user should see the above ...
2
votes
2answers
54 views

set & read pretty URL

I know this has been covered extensively, but I can't seem to find an answer to what I want to do. I've read all the stack articles and looked at different methods that google shows with the infinite ...
2
votes
1answer
257 views

Handling Two Query Strings with .htaccess

I'm trying to rewrite urls for a page that has two query strings parameter. And according to these parameters value (set or not), I show different contents on the page. ...
1
vote
1answer
83 views

ASCII Characters in Links Producing 404 Errors

I used to have a query string ?q= in all my urls. I now have these urls redirecting to the alias name. RewriteRule ^(.*)$ index.php?q=$1 [L,NC] RewriteCond %{QUERY_STRING} ^q=(.*)$ [NC] RewriteRule ...
0
votes
0answers
30 views

Mod_Rewrite Rules

I'm currently developing a new template and system using PHP and MySQL that essentially circumvents a current shopping cart system built with PERL and Smarty Templates. My system accesses the database ...
0
votes
1answer
115 views

rewriting url with query string

in continuation to what i asked here i want to auto rewriting of below url http://testsite.com/siterootb/sample-page.php?bbi=value1&bbl=value2 to ...
0
votes
1answer
138 views

wordpress how to remove ? from the url using htaccess

i having a URL http://www.domain.com/wp/application/?productname I want to change it to http://www.domain.com/wp/application/productname . if i have treated like this then page not found error is ...
0
votes
2answers
159 views

Redirecting URL in JBOSS AS 7

Hi everyone currently i am passing query string in my url like ip:port/contextroot/page.jsf?id=22&tsid=1234 the query string is a user id and tsid. the doesnt specifically need to type in the ...
0
votes
1answer
93 views

In WordPress, how can I ReWrite a 'page' URL based on query string parameters?

I have the following page which contains a single post and a number of comments. http://mysite.com/tips When a user posts a comment, I add meta-data to it so I can filter comments by using these ...
1
vote
0answers
150 views

Substituting query string parameter name in IIS

I was wondering if it is possible to substitute query string parameter names in IIS Rewrite. For example: http://www.old-site.com/searchresults?pId=77&page=3 To ...
0
votes
1answer
96 views

SEO-Friendly URLs

I am trying to make SEO-Friendly URLs, but with no luck. I read some tutorials, but no-one makes sense, and excuse me but I am weak on regular expressions. The basic URL that I currently have is ...
0
votes
0answers
74 views

Dokuwiki + IIRF appends multiple _do_ commands to URL

I'm using IIRF with Dokuwiki to make the URLs pretty. But I'm having problems! Any time I go to a URL which has a "do=" query string, the resultant page then appends this to the URL. For example: ...
0
votes
1answer
186 views

Validate a domain in a query_string for rewritecond

The webserver i'm using is Apache 2.2. I'm trying to validate a domain that is in a query string sent by an external party. An example of a valid request: ...
1
vote
0answers
158 views

Wordpress querystring format from ?param=value to /param/value

I've added a querystring var to wordpress like this and now I need to change the notation from ? to slashes, so these http://example.com/myweb/page-1/?param=value ...
0
votes
4answers
220 views

.NET application stripping query string parameters from Request in Default.aspx.cs

I am having a hard time figuring out why the request part of my URL is not showing up correctly in the Page_Load method of Default.aspx.cs in my application. If my URL is something like this: ...
1
vote
1answer
407 views

Accessing Query string in postback event while using URL rewrite 2.0 in asp.net 4.0

I am in a trouble working with URL Rewrite 2.0 (in IIS7) for Web form web-app. In application there are job postings whose URL was not earlier SEO friendly and not in readable form as ...
0
votes
1answer
510 views

Forwarding query string with rewrite rule

I'm trying to write a rewrite rule but I've some serious problems with forwarding query string. I also tried [QSA] flag but it didn't work. Following the correct request: ...
0
votes
1answer
455 views

Rewrite part of URL with a specific query string to different domain

I want to rewrite a set of url's to a different domain only when a specific query string is set. Only the main domain url needs to be rewritten, the rest of the url path needs to stay the same and the ...
0
votes
1answer
47 views

URL re write doesn't work when some query string vars are empty

I have the following rule rule in my .htaccess file RewriteRule dest/(.*)/item/(.*)/aId/(.*)/tId/(.*)/? rss.php?dest=$1&item=$2&aId=$3&bId=$4 [NC,L] This produces the following URL ...
0
votes
2answers
621 views

Strip or rewrite query string from cleaned url with htaccess

What I'm looking to do is strip a query parameter from a dynamic URL that needs to also be cleaned using HTACCESS. The url first starts as http://testdomain.com/post.php?id=3326. The url is cleaned ...
0
votes
1answer
279 views

Two question marks and two ampersand in query string?

Ech, my query string look's like: http://localhost/index.php?page=public&another=http://www.google.com?omg=tt&nop=asd And afcourse i rewrite it with regex to: regex: RewriteRule ...
0
votes
2answers
69 views

Re-writing URL parameters

So I have a script (written in PHP) that posts the user input of a reference number and postcode and then redirects the user to a page with the URL parameters like so: ...
0
votes
2answers
143 views

htaccess rewrite of directory to variable fails on localhost

Let's take something like this question. So, I'm looking to rewrite: http://www.example.com/test to http://www.example.com/page.php?v=test with: RewriteRule ^(.*)$ page.php?v=$1 [L] This takes me ...
0
votes
2answers
598 views

How to create RewriteRule where the request URL has query string

I feel like I'm really close, but I can't quite get this Apache RewriteRule to work correctly. I have a URL like http://mysite.com/product.php?view=true&ID=123 and I would like to redirect to ...
5
votes
2answers
2k views

How to implement URL rewriting with Windows Azure?

I have an ASP.NET / C# website that's hosted on Windows Azure. The site is a predictions-based social site with a feed of prediction summaries on the main page. If you click on a summary, you're ...
0
votes
1answer
500 views

mod_rewrite - convert querystring to paths

Im trying to rewrite a url that has a query string to its SEO friendly name i.e. consider mysite.com/models?p1=v1&p2=v2&p3=v3&p4=v4&p5=v5&p6=v6 Id like it to rewrite to ...
0
votes
1answer
732 views

IIS URL rewriting to redirect querystring addresses to MVC style path to preserve old links

I am trying to preserve old links such as index.php?pageid=123 to the now current /accounts/home. No part of the original URL has to be included in the redirect. I have a big list of old page links ...
2
votes
4answers
1k views

Regex in URL Rewriting to match Querystring Parameter Values in any order?

Many URL rewriting utilities allow Regex matching. I need some URLs to be matched against a couple of main querystring parmeter values no matter what order they appear in. For example let's consider ...
0
votes
1answer
63 views

Implement Rewrite Module to have ApplicationName with querystring

How can I rewrite the URL to have application name + querystring? For example I have a web application with the following querystring mywebsite/default.aspx?UserName=xyz How can I have URL with ...
1
vote
1answer
1k views

iis7 url rewrite - optional querystring parameters

I'm using the iis7 URL Rewrite module and it's working fine, except for two things. Being new to this, I might be missing something obvious. 1) My URL gets converted from ...
10
votes
3answers
6k views

What's the difference between Request.Url.Query and Request.QueryString?

I have been tracking down a bug on a Url Rewriting application. The bug showed up as an encoding problem on some diacritic characters in the querystring. Basically, the problem was that a request ...
2
votes
3answers
1k views

urlrewritING.net query character in virtual url causing redirect loop

I've got a project where we're re-building a site for a client, the new site is using umbraco on the .net platform. the old site was cold fusion. Umbraco utilises the urlrewriting.net library so I ...
0
votes
3answers
2k views

How do I write an .htaccess rewrite rule to convert query strings into segmented URIs?

Is there a way to put a rewrite rule in htaccess that will convert query strings to segmented URIs? For eg. http://domain.com/controller/method/?a=1&b=2&c=3 should get rewritten as ...