Jump to content

Redirect w/ .htaccess


mycro

Recommended Posts

Basically I have very simple site with only one real page. I don't know if this will be relavent for the way I will get this working. Anyway, I basically want to redirect www.mysite.com/variable123 to a different page, such as www.yoursite.com/you.

 

The only problem is that this will literally be ...com/anything without .php or .html or any prefix. I guess I'll need all requests EXCEPT index.php to go to redirect.php?id=anything and from there query my database and if user=variable then go to page=yoursite.com/you using redirect headers.

 

How can I accomplish this? I'll have the PHP and MySQL part down fine, I'm just not sure how to get this htaccess stuff going.

 

 

Thank you

Link to comment
Share on other sites

I think what I want to do is redirect all requests to otherpage.php if it is not index.php

 

 

RewriteEngine on

RewriteRule ^(.*)$ redirect\.php?id=$1 [L]

 

this doesn't seem to work. I know I need a condition in there too for index.php. I appreciate the help

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.