0
votes
0answers
27 views

Hide GET parameters in a URL / rewrite to a clean URL / save GET params in SESSION?

I've looked around here but I can't find a matching solution to my problem here. What I want to do is 1) clean up the URLs with GET params in them and 2) save those GET params in session variables. ...
-1
votes
2answers
63 views

pretty url with $_GET [duplicate]

Im trying to get pretty urls but i don't know anything about htaccess. trying to get something like this: domain.com/?page=login domain.com/?page=user&uid=2 to: domain.com/login/ ...
0
votes
2answers
22 views

Rewrite $_GET to/$1/$2

I have next form: <form action="/" method="get" name="main"> <select size="1" name="type" id="sel" class="dropdown"> <option value="Class1" >YES</option> ...
1
vote
1answer
30 views

Rewriting urls with mod_rewrite - GET variables

I found out I could make clean urls with mod_rewrite. I managed to make pages like /home.php viewable by visiting /home (without .php). Now, I'd like to turn view_album.php?album_id=23 into album/23 ...
0
votes
0answers
45 views

Lighttpd pass get parameters with mod_rewrite

I got a problem with mod_rewrite. Environment: PHP version: 5.2.6 Lighttpd version: 1.4.24 There's a PHP script which takes parameters like this: Get information (GET) NOTE: The number of ...
-1
votes
1answer
34 views

Can a mod_rewrite result in GET requests being ignored?

I am having trouble accessing my get request... My .htaccess: Options +FollowSymlinks -MultiViews RewriteEngine On RewriteBase /alex RewriteRule ^admin/([a-zA-Z0-9]+)/?$ admin/index.php?page=$1 ...
2
votes
2answers
115 views

htaccess rewrite from page ID to name not working

I'm calling ?page=about using the GET method in a form on index.php (ie. 'about' is a select option). Once I click submit, the URL will look like this: http://example.com/?page=about However I ...
0
votes
1answer
21 views

htaccess Mod-Rewrite (GET parameters + on top of rewrite)

I'm working on this application and I'm having a little issue regarding htaccess mod_rewrite. Before I explain what I want to do I'll show you what I've done so far: RewriteRule ^client([0-9]*)$ ...
-1
votes
1answer
61 views

Mod rewrite get parameters

I want to pass data through the url while using mod_rewrite. I read many links on stackoverflow and other sites but I can't find the solution. The resulted URL is: ...
0
votes
0answers
17 views

Mod_rewrite with additional, undeclarated parameters from Form by GET

I'm using mod_rewrites on my page, it works great but i have problems with additional, undeclarated parameters sended from FORM by GET method. Check this code: This is my mod_rewrites rules: ...
0
votes
1answer
79 views

htaccess Rewrite dont pass querystring

I have the following rules in my htaccess RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} -d RewriteRule .+ redirect.php [L] RewriteRule ^(.*)\.(?!js|css|png)([^.]*)$ redirect.php [L] ...
0
votes
2answers
53 views

Using subdomain value as $_GET variable [duplicate]

Currently my site url is set up using mod_rewrite and $_GET variables to load different content. Like this: mysite.com/subsite/var1/var2 I'd like to change that format to look like this: ...
1
vote
1answer
23 views

Remove “-” from apache rewrite parameter

I'm using mod_rewrite and want to do this : RewriteRule ^item/([0-9]*)-(.*)-(.*)$ pages/page_item.php?id=$1-&name=$2-&firstname=$3 [QSA,L] to become this item/25-Foo-Bar But when I ...
0
votes
0answers
139 views

htaccess - Rewrite URL to remove original filename and replace with GET value

I'm currently using the following htaccess to remove .php extension from all files:- RewriteEngine On RewriteCond %{REQUEST_FILENAME}.php -f RewriteCond %{REQUEST_URI} !/$ RewriteRule (.*) $1\.php ...
0
votes
0answers
13 views

mod_rewrite + feature get variable

actually my link to register look like this: domain.com/Register.html (domain.com/?Link=Register) if there is an error while registering, the var "problem" is added (like: ...
0
votes
2answers
90 views

Mod_rewrite, $_GET does not pass along the variable

I'm trying to make domain.com/notalone/viewpost/5/ act as domain.com/notalone/viewpost.php?id=5 My current .htaccess is this: RewriteEngine On RewriteRule ^notalone/viewpost/([0-9]+)/?$ ...
0
votes
1answer
74 views

Despite adding QSA to mod_rewrite, $_GET still returning empty variable

UPDATED 2/1/13: This question is really holding me up from getting some work done, so if anyone else has a suggestion, It'd be much appreciated. I'm trying to make domain.com/notalone/viewpost/5/ act ...
0
votes
1answer
50 views

htaccess to redirect GET vars without touching css links

Well, I've read pages and more pages of htaccess guides and questions here at stackoverflow, but still I haven't found an answer to this problem. I want the URL www.domain.com/profile/1 to be ...
-1
votes
1answer
49 views

.htaccess - Can't seem to work out how to remove all file extensions and shorten urls

So my folder is /banmanagement/ The url I get when searching is: /banmanagement/index.php?player=PlayerSearch&server=0&action=searchplayer I would like it to show as: ...
0
votes
1answer
91 views

mod_rewrite querystring not working locally

I need to use mod_rewrite for translate: http://example.com/sitengoFrontEnd3/lista/tipo-todo/?terminos=abcd Into: http://example.com/sitengoFrontEnd3/lista/tipo-todo/abcd I am using codeigniter ...
1
vote
1answer
36 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
1answer
34 views

extending a htaccess rewrite rule

I have following rewrite rule/condition in my htaccess: RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^id([0-9]+)/?$ /profile.php?user_id=$1 [L] The result is "example.com/id1" Now the problem I ...
3
votes
1answer
96 views

Pages redirect (User friendly URL's)

How would I display dynamic content, say profile pages with the url syntax mysite.com/users/user1 mysite.com/users/user2 mysite.com/users/user3 Without having a different page or directory ...
2
votes
1answer
224 views

htaccess mod rewrite $_GET to variables with slashes

I would like to rewrite URL's with htaccess to better readable URL's and use the $_GET variable in PHP I sometimes make use of a subdomain so it has to work with and without. Also are the variables ...
1
vote
3answers
87 views

Get mod-rewrite title after $_GET

I currently use this mod-rewrite RewriteRule ^([0-9]+)/([a-zA-Z0-9_-]+)$ post.php?id=$1 [L] RewriteRule ^([0-9]+)/([a-zA-Z0-9_-]+)/$ post.php?id=$1 [L] which allows me to add on the post title in ...
0
votes
2answers
243 views

Using RewriteRule on Friendly-URL - Get Variables with Redirect 301

I'm having some problems. I searched a lot, tried variations, and still can't get this working. My aim is simply this: Redirect: http://site.com/folder1/folder2/page To: ...
0
votes
2answers
903 views

htaccess mod_rewrite redirect directory paths with no trailing slash to PHP GET

I am building an ajax-driven website that uses html5 pushState() to preserve its url structure and facilitate reliable page reloads, etc. For this,I have set up my htaccess in such a way that any ...
0
votes
1answer
59 views

Why is this htaccess rule assigning two matches to one $_GET variable?

Here's the htaccess rule for my site's profile page: RewriteRule ^users/([0-9]+)/?(.+)?/?(.+)? profile.php?id=$1&slug=$2&tab=$3&%{QUERY_STRING} When you click on a tab on a user's ...
-1
votes
1answer
226 views

Rewrite PHP all GET parameters .htaccess [duplicate]

Possible Duplicate: mod_rewrite, php and the .htaccess file Would like this to happen in the .htaccess file. to rewrite index.php?pagetype=name to /pagetype/name/ do this for all ...
1
vote
1answer
30 views

.htaccess Mod_rewrite - I am confused

I am having trouble to get the following working: I have my base domain: www.mydomain.com And I want to redirect users via an .htaccess file like so: If someone types: www.mydomain.com/id Then ...
0
votes
1answer
143 views

mod_rewrite redirect or block heavy traffic what's not mentioned for me

The following is generating a lot of traffic but it's not for me. Or they try to break in or they are voting for a house number, not sure. Log: POST /?xclzve_ty4AGLRXcipv06CINTZekrx28EKPVb HTTP/1.1 ...
0
votes
1answer
149 views

htacess exclude CSS/JS/Images

This exclude CSS/JS/Images from original url. Anyone know how to solve this problem ? .htacess: RewriteEngine on RewriteRule %{REQUEST_FILENAME} !-d RewriteRule %{REQUEST_FILENAME} !-f RewriteRule ...
0
votes
1answer
111 views

Preload next page if the user clicked “next” in previous page

I really tried to do this but I don't know what would be the best way. I have a simple pagination system, with a "Previous" and "Next" buttons. I want to preload the next or previous page in the ...
1
vote
3answers
93 views

.htaccess not matching

htaccess not matching RewriteCond %{REQUEST_URI} ^/catalog/products_in_scene.php?(.*)$ RewriteRule ^(.+) "/services/hpv/index.php?%1" RewriteCond ...
0
votes
2answers
153 views

mod_rewrite with GET parameters

I'm trying to make a RewriteRule with get parameters. It's a simple example but still don't work. RewriteRule ^/?localhost/([0-9]+) test.php?id=$1 [QSA] So if I go to localhost/123 i want the 123 ...
0
votes
1answer
157 views

mod_rewrite different languages part of url

Here is my current .htaccess: RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f [NC,OR] RewriteCond %{REQUEST_FILENAME} !-d [NC] RewriteRule ^$ /launcher/index.html [L] ...
0
votes
1answer
451 views

overriding url rewriting for $_GET variables

I have a page in my admin system with the following path: http://192.168.1.253/xxxxxx/admin/view/news-items/issue/3 I am trying to rewrite it so that it directs to: ...
0
votes
1answer
237 views

.htaccess mod_rewrite URL query

I was hoping someone could help me out. I'm building a CRM application and need help modifying the .htaccess file to clean up the URLs. I've read every post regarding .htaccess and mod_rewrite and ...
4
votes
3answers
112 views

GET method and PHP

I have two questions. In my webpage (developed by me), I use the GET method to return for example the id of one record that I have in a mySQL database. For example, one url can be this: ...
1
vote
2answers
260 views

Mod Rewrite with Pagination

I wanna make this rather simple to ask so I can hope for a simple response. I'm somewhat new to mod rewriting (most I've done is a small cms using index.php?page=x and mod rewriting to that name). I ...
0
votes
1answer
73 views

mod_rewrite a double directory

I'm using mod_rewrite in my .htaccess to change a double directory structure into a double GET query string like so: URL: http://domain.com/test/me/ After mod_rewrite: ...
2
votes
2answers
104 views

.htaccess, Rewriting ALL PHP Vars to folders

I got this problem. I want to write ALL my php vars to folders. For example: www.mypage.com/en/shows/1/ to www.mypage.com/index.php?language=en&section=shows&item=1 or ...
0
votes
2answers
476 views

Rewrite basic $_GET variable to friendly URL using mod_rewrite

I know questions similar to this are common. I just don't even know where to begin with rewrite rules with the /'s and .'s I don't know how to retrofit other peoples solutions to mine. Onto my ...
0
votes
3answers
366 views

Using mod_rewrite to 301 redirect get vars to new clean URLs

UPDATE: Solution at bottom. I recently switched from using a set up such as index.php?p=page_name&o=temporary_override and switched to clean urls such as /page_name/temporary_override. The ...
0
votes
1answer
105 views

Mod Rewrite and GET data - works on one but not another

Stumped here and appreciate the help. creating a site with double optin registration - uses _GET in an emailed URL to finish subscription. After subscribing I have a link that allows them to access ...
0
votes
1answer
177 views

mod_rewrite from GET form

I have a get form which returns a location variable into the url. My whole site's url rewriting is working apart from my get form. Whenever I submit the form, I want it to go to: ...
1
vote
2answers
231 views

HTML Form and mod_rewrite

OK, I have been trying to figure this out for a while. I just recently figured out how to use apache's mod_rewrite rules. I have a search script set up on my website and it uses GET. I have a html ...
0
votes
4answers
107 views

php how to read URL including # and / symbols

I have a website with a database of part numbers. My manager wants to be able to type: www.site.com/products/part# and have thepage automatically take you to the relevant page. Right now I have it ...
0
votes
0answers
72 views

mod_rewrite unknow length of array

I would like to style my url a little bit. from this: http://test.dev/results.html?cat[]=1&cat[]=2&x=150&y=171 where cat[]=? zero, one or more to this: ...
1
vote
2answers
782 views

mod_rewrite remove a GET variable

I'm trying to take example.com/home?lang=fr&foo=bar and redirect to example.com/fr/home?foo=bar I tried RewriteCond %{QUERY_STRING} lang=([a-z]{2})&? RewriteRule ^(.*) ...

1 2