PDA

View Full Version : Nube Question



Rhobes
04-26-2007, 07:33 PM
I'm getting there, I got some pages up but am finding clitches, just have a number of corrections and it gets better.

Why do I have to type in http://www.mydomain.com to get to my index page? Yet another browser I can just put http://mydomain.com. The wrong one brings up the HM original 1st page saying in construction etc(and I trashed that page? it's back). I can also get an index of my second page(something I never created), very strange, I know I got something wired wrong, yet type the right thing into the respective browser will give my correct working site.:confused:

Not sure anyone will have an answer here, I'm just trying things.

charlesgan
04-27-2007, 12:21 AM
hi. you need to do redirection for this case.
editing the .htaccess is one of the solution
something like this


Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^yourdomain.com [nc]
rewriterule ^(.*)$ http://www.yourdomain.com/$1 [r=301,nc]


i think the cpanel redirection can do this as well. you can add it in

Hostalot
05-01-2007, 04:55 PM
CPanel redirection will write this straight in your .htaccess file so you donīt need to worry about this sort of thing as a noob;)