mycro Posted January 24, 2010 Share Posted January 24, 2010 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 Quote Link to comment Share on other sites More sharing options...
mycro Posted January 24, 2010 Author Share Posted January 24, 2010 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 Quote Link to comment Share on other sites More sharing options...
oni-kun Posted January 29, 2010 Share Posted January 29, 2010 Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.yoursite.com/onlyallowthispagetoshow_evenifothersrequested.php [R=301,L] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.