0
votes
1answer
10 views

.htaccess redirect QUERY_STRING and not propage QUERY_STRING

I would like to make a permanent redirection of /ask?search%255Bto%255D=test to /question/test I add in my .htaccess RewriteCond %{QUERY_STRING} ^search%255Bto%255D=([a-zA-Z0-9\-]*) ...
1
vote
0answers
11 views

Rewrite rule to drop .html and to keep the querystring while navigating between pages

I have html pages and I want to remove the .html and keep the query-string in place that when a visitor comes in with a query-string and navigate between pages the query-string remains in place. So ...
1
vote
1answer
29 views

Redirection with Apache2 query_string with square brackets

I have a URL like http://domain.net/documents?f[author]=43 Which should be redirected to http://domain.net/documents/author/43 What I have so far is RewriteEngine On Rewritebase ...
0
votes
0answers
36 views

Persistent Query Breaking Mod_Rewrite

I have links like this example.com/content-main example.com/content-main-alternate example.com/one-level-down/deeper-level-down/content-buried that map successfully to ...
0
votes
0answers
72 views

Removing PHP extension and rewriting query string with .htaccess

I'm using extension-less URLs but now want to also support query strings but have them seo friendly. I want to be able to use URLs like: domain.com/somefile/1234 OR domain.com/somefile/1234/delete ...
2
votes
1answer
27 views

query string gets ignored after mod_rewrite

I am using the following rewrite rule in my .htaccess file to send all requests to the index.php file located at the root: RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d ...
0
votes
2answers
71 views

htaccess query string with QSA

I am trying to set common rule in htaccess for removing .php extension and links using different query strings like domainname.com/welcome.php?user=normal&type=free&uid=100 ...
0
votes
1answer
39 views

htaccess 301 redirect all website pages with query to /

In the past website was full of pages with different basis. After redisign and with new concept the website consists of only 1 page. So I need to redirect all old pages to /. Pages for example: ...
1
vote
1answer
124 views

.htaccess - redirect to page/dir, while all pages/dir are internally parsed as query string parameters

Scenario: I have a .htaccess file that is handling a lot of rewrites (I am aware it would be possbile/easier in PHP) Everything worked fine /some/fake/dir/foobar was internally rewritten to ...
0
votes
0answers
41 views

Keeping the query string, but hiding it in the Url

I am trying to change URL's in a .htaccess folder. I have www.example.com/product/?p=12 but I want to have www.example.com/product/buy-product I've made a rewrite rule which I've listed below. ...
1
vote
1answer
95 views

How to rewrite a url with a question mark?

Is it possible to rewrite an url with a question a mark in it? For instance, http://localhost/mysite/search?tag=mars to become this, index.php?url=search&tag[key_name]=mars I tried with ...
0
votes
1answer
180 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
0answers
289 views

Apache - RewriteCond QUERY_STRING

I've searched over here something close to what i need, havent found. So there we go. I've got a MediaWiki, the MediaWiki vhost uses mod_authnz_ldap to authenticate via LDAP, however, the Collection ...
0
votes
2answers
37 views

Apache Redirect Using %{QUERY_STRING} To Match A String Anywhere

I'm looking to do an Apache redirect using %{QUERY_STRING} but it simply isn't working. I am wanting to redirect any web page query that has a string anywhere in the URL. So for example: ...
1
vote
1answer
41 views

how to get from mod_rewrited url query string

I have a liitle mod_rewrite problem. I have index.php (in root directory) which contains simple href link: <a href="novice/this-is-something">Novice</a> When I click on Novice, ...
0
votes
2answers
201 views

mod_rewrite to redirect URL with query string

I've searched all over stackoverflow, but none of the answers seem to be working for this situation. I have a lot of working mod_rewrite rules already in my httpd.conf file. I just recently found ...
1
vote
3answers
129 views

Mod Rewrite + QSA : Same querystring param in rewrite target and in querystring - Force use of target possible?

We have the following rewrite rule: RewriteRule ^([A-Za-z0-9\_]+)$ index.php?rewrite=$1 [L,QSA] We were wondering if there was a way to have the ?rewrite=$1 take precedence over one that is passed ...
3
votes
2answers
152 views

Handling RESTful url's PHP

I'm having trouble grasping what would be the most proper way of handling RESTful url's. I'm having url's like these: http://localhost/products http://localhost/products/123 ...
1
vote
1answer
61 views

(SOLVED) How to keep mod_rewrite from recognizing directories

So, lately' I've been dealing with an issue relating to mod_rewrite and it seems nobody is trying to do anything like it. Every question people have is about trying to exclude directories from the ...
0
votes
1answer
115 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 ...
1
vote
1answer
172 views

How Do I Use Mod_Rewrite to Redirect Users to a Mobile Subdirectory?

I would like to use mod_rewrite to detect if a user agent is a mobile device and if so, redirect users from www.example.com/foo.php?a=12345 to example.com/mobile/foo.php?a=12345. The redirect must ...
2
votes
1answer
320 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. ...
0
votes
1answer
174 views

Redirect to 404 if query string contains anything

Despite searching extensively I cannot seem to find an answer, so I apologise if this has been asked before and I've simply missed it. I have a site with only static URIs, all SEO friendly, ...
1
vote
1answer
79 views

Drupal mod rewrite directory to query string

I've seen this question asked/answered a few times on stackoverflow, but I can't get any of the solutions to work for me. I'm sure it's a case of my misunderstanding how mod rewrite works. I'm ...
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 ...
2
votes
1answer
359 views

How can I mod_rewrite and keep query strings?

I want to mod_rewrite a URL to another page, but then I also want any query strings added to be preserved. RewriteEngine On #enforce trailing slashes RewriteCond %{REQUEST_FILENAME} !-f RewriteCond ...
1
vote
2answers
114 views

Redirect querystring using mod_rewrite

I want to use mod_rewrite to change my old URL. For example, I want http://www.example.com/lyrics?id=393 to be changed to http://www.example.com/lyrics/393 I tried the following: RewriteRule ...
0
votes
1answer
215 views

how to do a htaccess 301 redirect with query strings?

i have some links that i need to redirect, like: /pass-help.php?action=1&email=test@test.com to /about/help or /contests/contest-a?testa=1&testb=1 /user/index/contest i need a way to find ...
0
votes
2answers
204 views

Redirection using .regex & htaccess to new URL with added query string

Trying to redirect old website blog archives using regex and .htaccess to be found under a new site's main archives using a query string including a category filter. I am trying to make the following ...
0
votes
2answers
116 views

How to remove any query except `callback` for specific URLs with RewriteRule?

The current RewriteRule removes any query except query callback for any URL. # Remove question mark and parameters RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^?#\ ]*)\?[^\ ]*\ HTTP/ [NC] # Query ...
1
vote
1answer
207 views

htaccess: redirect to a same page, but with different query string value

I have a page with query string which I would like to redirect to same page with different query string value: www.mysite.com/pages/page.php?id=5 (this is the old page) ...
0
votes
1answer
211 views

Apache mod_rewrite remove empty query string parameters?

Is it possible to remove empty query string parameters from a URL with Apache's mod_rewrite? A simple PHP script has an HTML form which submits to itself via GET. The HTML form has many input fields ...
0
votes
1answer
53 views

mod_rewrite for pretty url with uriencoded query strings

ok, so I've tried many things I've found on SO and elsewhere, but I just can't get it to work, always receiving a 404 error code. I'd like to enter this url: ...
0
votes
1answer
91 views

mod_rewrite and {QUERY_STRING}

Changed my url from http://www.website.com/b.php?n=45&t=example to this http://www.website.com/45/example by using this mod_rewrite RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f ...
1
vote
2answers
74 views

Swedish Characters in .htaccess RewriteRule

I have a problem with .htaccess RewriteRule while using swedish characters (ä,ö.å) i have rule written in my .htaccess file is.. Options +FollowSymLinks RewriteEngine on Working fine. when I type ...
0
votes
0answers
18 views

.htaccess RewriteRule - How can I obtain url with modified query string [duplicate]

Possible Duplicate: htaccess redirect url parameter as segment Example: www.site.com/page?id=abc123 to www.site.com/page/nameofabc123 where id = abc123 is the ID of content title of a ...
2
votes
1answer
97 views

301 Redirect Rule gives different results on different hosting environment

I have been doing some URL rewriting for a customer in a test environment that work fine in my environment but when I move to theirs I get different results and the rule fails. I am 301 redirecting ...
3
votes
1answer
811 views

replace character in query string via .htaccess

My client wants a query string munged (by changing % to A) on certain pages. For example, I can remove the query string completely on the desired pages via: RewriteCond %{QUERY_STRING} !="" ...
0
votes
1answer
219 views

URL Rewriting - Query String

I work on an MVC application and I have urls in the following format: http://127.0.0.1/PDO/PARTIE%20III/index.php?rt=index/connexion http://127.0.0.1/PDO/PARTIE%20III/index.php?rt=index/nouveauMsg ...
0
votes
3answers
49 views

Grabbing Querystrings while using ModRewrite with PHP

I'm using URL rewriting through .htaccess on my site. Then I submit through PayPal's ExpressPay and get something like the following returned: ...
0
votes
1answer
191 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: ...
0
votes
1answer
254 views

htaccess and mod_rewrite using multiple querystrings

I am currently using htaccess to rewrite a single querystring to it's page name using the following and it's working fine... Options +FollowSymLinks RewriteEngine on RewriteBase / RewriteCond ...
0
votes
0answers
126 views

.htaccess and mod_rewrite need to change dynamic url to seo not working

I'm working the way around my url website with .htaccess and it's given me an error. This is what i got: Options +FollowSymlinks RewriteEngine On RewriteBase / RewriteOptions MaxRedirects=10 #this ...
0
votes
1answer
535 views

URL Rewrite querystring in htaccess

I've spent a couple of hours trying to achieve something I thought was easy. I have domain.tld/index.php?site=Page and want to turn it domain.tld/Page. The ?site=Page is relative to what it gets from ...
1
vote
0answers
160 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 ...
1
vote
2answers
354 views

mod_rewrite to php file unless directory exists

I have a mod_rewrite rule working to direct non-existing directories to a php file which does a database get based on the $1. Everything works fine unless the directory does exist, which displays ...
0
votes
2answers
750 views

apache redirection is adding query string to the new url

apache mod rewrite is acting weird on me: im trying to redirect this: http://www.website.com/page.php?id=34 to this: http://www.website.com/ using this in the htaccess: RewriteCond %{QUERY_STRING} ...
0
votes
1answer
2k views

.htaccess - remove query string from URL (no redirection)

My URL is http://www.example.com/eg1?redirect=xyz, which should be http://www.example.com/eg1 The rewrite rule written for this is as follows: RewriteCond %{Query_STRING} ^redirect=xyz$ RewriteRule ...
0
votes
1answer
552 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
211 views

How to check for encoded OR unencoded character in query string with mod_rewrite

I want mod_rewrite rules for query string ?:hizzah=blah to redirect to brouahaha.html I tried this: RewriteCond %{QUERY_STRING} :hizzah=blah RewriteRule .* brouahaha.html Note the colon in front ...

1 2 3