Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my .htaccess

RewriteEngine on
Options +FollowSymlinks -MultiViews
RewriteRule ^genre/(.*)$ /index.php?genre=$1 [R=301]

The mod_rewrite works, but so does the old link example:

/index.php?genre=action

Still works. I want to redirect it to:

/genre/action

Problem: They both work, I want the old one to redirect to the new one.

And is it possible to change links with .htaccess. Some sort of url replacing?

My links still says:

www.site.com/index.php?genre=action

I want it to change it to:

www.site.com/genre/action

Or do I have to do this manually?

Thanks!

share|improve this question

3 Answers

Why do you wan't to do that? Some sort of security or what? Just ensure that all of your links, is written like you wanted them to.

And yes the users could still be able to see the old url, if they wrote it manually in and knew what each $_GET variable was named correctly.

share|improve this answer
No, but I don't want two links. I want www.site.com/index.php?genre=action to redirect to 'www.site.com/genre/action' – Muazam Jun 12 '11 at 16:22
Yes I understood that too, but I just think your question is quite irrelevant, since you easy could avoid your users for finding out the names of your $_GET values and using the "ugly" url for viewing your pages. Example below: $genre = $_GET['__genreValue']; $action = $_GET['__actionValue']; /index.php?__genre=$1&__actionValue=$2 /index.php?__genreValue=genre2&__actionValue=action2 /genre/action/ – Messing Jun 12 '11 at 19:10
I know, but I don't want to hide it, I want it to redirect. – Muazam Jun 12 '11 at 20:30
Ye okay - I have posted a new answer, as a solution. – Messing Jun 13 '11 at 0:03

[R=301] leads to a HTTP redirect with status code 301.

Just write

RewriteEngine on
Options +FollowSymlinks -MultiViews
RewriteRule ^genre/(.*)$ /index.php?genre=$1

to rewrite the urls on the server side.

share|improve this answer
I'm using it now. animetard.com/?genre=action still works and does not redirect and the link "Action" is still showing http://www.animetard.com/?genre=action – Muazam Jun 12 '11 at 16:20
The solution does not prevent the usage of ?genre=action, but animetard.com/genre/action works now with out changing the url. – Peter Jun 12 '11 at 16:23
I edited the post to provide a solution with prevents the usage of ?genre=action. – Peter Jun 12 '11 at 16:27
Does not redirect me or anything :/ thanks for trying though. – Muazam Jun 12 '11 at 20:27
Well, actually you're right. Query parameters are not matched by "RewriteRule". Best solution would be to make sure that only urls like /genre/action are used by your website. – Peter Jun 12 '11 at 23:08

I'll post a new answer for a new solution, for you and without using .htaccess and core php.

I would check the client's url by a simple php check and this is going on at the masterpage (if you are using it else you just add an include file, on all your pages).

$genre = $_GET['genre'];
$action = $_GET['action'];

$URI = $_SERVER['REQUEST_URI'];

if(($genre) || ($action))
{
    if(($genre) && (!$action))
    {
        $URL = str_replace("?","", str_replace("=","", str_replace("&","/", str_replace($genre,"", $URI."/"))));
    }
    elseif(($genre) || ($action))
    {
        $URL = str_replace("?","", str_replace("=","", str_replace("&","/", str_replace($genre,"", str_replace($action,"", $URI."/")))));
    }

    header("location: ".$URL);
}

Of course, this is not dynamic and it would be much more effective, if I used a preg_replace instead of the $genre and $action variables, so it would redirect whatever the URI was.

Hope this could help a bit on the way, if you decide to use php as the solution.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.