GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Redirect help needed.. (https://gfy.com/showthread.php?t=517230)

Realpascal 09-16-2005 06:28 AM

Redirect help needed..
 
I want to make the following redirection:

www.mydomain/folder
redirected to:
www.mydomain/folder/folder2

But when I use a .htaccess
Redirect /folder http://www.mydomain.com/folder/folder1
The server goes into an endless loop.

I must be going nuts.. What am I doing wrong ? :helpme

Realpascal 09-16-2005 07:00 AM

Can anyone help me out here ?

taibo 09-16-2005 07:01 AM

use meta redirect?

fris 09-16-2005 07:06 AM

can use php to do that.

http://www.php.net/header

look at the info there

darksoul 09-16-2005 07:06 AM

heh, obviously.
Redirect /folder will redirect all requests, including /folder/folder2
You could redirect using mod_rewrite

Code:

RewriteEngine On
RewriteCond %{REQUEST_URI}      !^/folder/folder2.*$ [NC]
RewriteCond %{REQUEST_URI}      ^/folder/.*$ [NC]
RewriteRule ^(.*)      http://www.domain.com/folder/folder2/$1 [R,L]


Realpascal 09-16-2005 07:07 AM

Quote:

Originally Posted by taibo
use meta redirect?

Possible, but I would prefer to use .htaccess. Thanks for the suggestion anyway.. :thumbsup

Realpascal 09-16-2005 07:09 AM

Quote:

Originally Posted by fris
can use php to do that.

http://www.php.net/header

look at the info there

Thanks Fris, I didn't know that option :thumbsup

grumpy 09-16-2005 07:12 AM

in the page < s c r i p t > window.location='the url'< / s c r i p t >

without the spaces

Realpascal 09-16-2005 07:17 AM

Thanks for all help, guys !

Gave Darksoul's option a try, and it worked great.

"Rocky" 09-16-2005 07:20 AM

http://www.mydomain/folder/index.php >>

<?
header("Location: http://www.mydomain/folder/folder2");
?>


All times are GMT -7. The time now is 10:13 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123