|
|||
|
www. DOES NOT work with my domain name?!!
For whatever reason, www.mysite.com does not work. In fact, I get the following message in the firefox browser:
There is no website configured at this address. You are seeing this page because there is nothing configured for the site you have requested. If you think you are seeing this page in error, please contact the site administrator or datacenter responsible for this site. However, when i goto http://mysite.com, the site comes up. Is there any way I can resolved this issue? This issue started when I deleted the site, then created it again. Please help Thanks in advance, Kirk |
|
|||
|
Quote:
|
|
|||
|
Did you check the virtualhost entry in httpd.conf ? Is there ServerAlias for www.mysite.com domain.
__________________
Mitul |
|
|||
|
Hi i solved the issue ur facing by creating a jscript that redirects. More information is available from the support site @
h**p://kb.brinkster.com/Kb.asp?kb=108075 I choose the option @ the very bottom. I created an 'index.html' file in the public_html folder. Then i wrote the code below. Notice that it has an option for every way someone could access ur site (ie. www.yoursitename.com, http://yoursitename.com, yoursitename.com, etc) <html> <head> <title></title> <script language=javascript> var whois=location+" " if (whois.indexOf("yoursitename.com") != -1) { window.location ="default.html" } if (whois.indexOf("http://www.yoursitename.com") != -1) { window.location ="default.html" } if (whois.indexOf("www.yoursitename.com") != -1) { window.location ="default.html" } if (whois.indexOf("http://yoursitename.com") != -1) { window.location ="default.html" } </script> </head> <body> </body> </html> Where it says "default.html". Thats where you put the name of your home page file. Now if your actual home page file is called "index.html," you could rename it to default.html. Then when someone accesses ur site, it will go check the javascript code about and then redirect to where you specified. Hope this helps you! Last edited by enzo12; 12-16-2006 at 07:18 PM. Reason: more details. |
|
|||
|
Quote:
thanks all Kali -------------- "I totally don't know what that means, but I want it." |
![]() |
| Thread Tools | |
| Display Modes | |
|
|