Current location: Hot Scripts Forums » Programming Languages » PHP » URL Rederecting with PHP?


URL Rederecting with PHP?

Reply
  #1 (permalink)  
Old 08-15-05, 08:22 AM
Cyder Cyder is offline
New Member
 
Join Date: Aug 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Unhappy URL Rederecting with PHP?

Hello.

I have an FTP with an URL that came with it. Lets call that www.url1.com. Recently my FTP got updated with almost 800MB and I bought another URL to help fill out the FTP. Lets call that one www.url2.com. Now what I need is to get some script that if you come from www.url1.com you will be sended to a category named "1" and if you come from www.url2.com you will be send to a category named "2" without the URL in the "URL Window" changing. Ive thought a little about it and came to one solution. This Script:

PHP Code:

<?php


$domain 
$_SERVER['SERVER_NAME'];

switch(
$domain) {
case 
"www.url1.com":
include (
"/1/index.php");
break;
case 
"www.url2.com":
include (
"/2/index.php");
break;
}
?>
Although it didnt work. Can anyone please help me with this? Please?

Have a good day.
Reply With Quote
  #2 (permalink)  
Old 08-15-05, 09:24 AM
dennispopel dennispopel is offline
Coding Addict
 
Join Date: Mar 2005
Posts: 263
Thanks: 0
Thanked 0 Times in 0 Posts
Hello,

try $_SERVER['HTTP_HOST'].
__________________
onPHP5.com - PHP5: Articles, News, Tutorials, Interviews, Software and more
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
2 profitable script sites for sale cms-master.com General Advertisements 3 07-03-07 10:17 AM
PHP multi-dimensional array sorting issue aqw PHP 2 06-24-05 11:09 PM
get URL from iframe in PHP? nassau PHP 4 01-21-05 12:48 AM
Php casestatement URL blessedrub JavaScript 1 01-12-05 08:12 PM
root url in php nassau PHP 22 12-05-04 04:24 PM


All times are GMT -5. The time now is 07:01 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.