Add to Favorites
Hosting Discussion
 

forgot password?


SPONSORED LINKS

Reply


Old
  Post #1 (permalink)   09-29-2004, 03:55 AM
HD Newbie
 
Join Date: Sep 2004
Posts: 4

Status: pingme97 is offline
I am a complete newbie, and my question might sound very basic, but please help me.

I have a website say called myname.com and my main pages (index etc) are in directory name i.e. myname.com/name.

I want http://myname.com/name to be displayed when user types in http://myname.com

 
 
 


Old
  Post #2 (permalink)   09-29-2004, 07:44 AM
HD Moderator
 
ldcdc's Avatar
 
Join Date: May 2004
Location: Ploiesti
Posts: 2,443

Status: ldcdc is online now
Maybe this page can help.

http://www.tamingthebeast.net/articl...1-redirect.htm
 
 
 


Old
  Post #3 (permalink)   09-29-2004, 09:15 AM
HD Management Staff
 
Artashes's Avatar
 
Join Date: Apr 2003
Location: Montreal, Canada
Posts: 5,201

Status: Artashes is online now
If you need to make a redirect, you can try this as well:
Code:
<SCRIPT language="JavaScript">
<!--
browserName=navigator.appName; 
browserVer=parseInt(navigator.appVersion);

  if ((browserName=="Netscape" && browserVer>=4) || (browserName=="Microsoft Internet Explorer" && browserVer>=4))    
  version="ver4";
  else
    version="other";

/* Version 4 browser URL */
if (version=="ver4")
  window.location="http://www.myname.com/name";

/* Other browsers URL */
else
  window.location="http://www.myname.com/name";

//-->
</SCRIPT>
Add it into the "HEAD" tags of the index page.
__________________
Hosting Discussion.com - Web hosting community for grownups.

FORUM RULES. Literally.
 
 
 


Old
  Post #4 (permalink)   09-29-2004, 09:44 AM
HD Community Advisor
 
ANMMark's Avatar
 
Join Date: Sep 2004
Location: Pennsylvania
Posts: 1,580

Status: ANMMark is offline
If you have php enabled on your server, you can create an index.php file in your main directory, and use the following code to redirect:

Code:
header("Location: http://www.myname.com/name/");
__________________
Mark - Co-President/Lead Developer
avidInteractive Software
The ServeraSuite 2007 Award Winning Professional Server Monitoring Solution - Click here
 
 
 
Reply

Thread Tools

New Post New Post   Old Post Old Post
Posting Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On