up vote 3 down vote favorite
1
share [g+] share [fb]

I have a file with .php extention www.example.com/thefile.php?name=123 that I want to direct the user to if the user visits any of the following aliases:

www.example.com/alias?name=123
www.example.com/unreal?name=123
www.example.com/fake?name=123

Is there a way I can get this done without using a framework that already uses this structure? I'm using pure php.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Yes you can, if you have mod_rewrite activated on your Apache Server, you can add a .htaccess file at the root of your website and have something like this into it (not 100% sure since I don't have Apache here at home) :

RewriteRule ^(alias|unreal|fake)$ thefile.php [QSA]

You can consult Apache mod_rewrite doc here

link|improve this answer
feedback

You will have to use mod_rewrite and .htaccess files to achieve this (if you are running Apache that is).

link|improve this answer
feedback

If you are using Apache, you can use mod_rewrite to do this.

A nice article about it: Using htaccess Files for Pretty URLS

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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