How to hide website from visitors

Discussion in 'HTML & Website Design' started by kingtony, Nov 19, 2009.

  1. #1
    We have a situation where we had a website designed, and it is ready for handover. It is currently on the developer's server. We can see it and test it. The next step is now to pay the developer and then he will transfer it to our webhost for deployment. This is phase 1 of many.

    However, we are not happy with the design, in fact. It is so devoid of what we were expecting that we are too ashamed to launch it. We will keep our side clean ito payment, but we are concerned that the matter might turn nasty at a sensitive stage.

    Is it possible, after he has transferred this website to our host, to block it being visible to visitors? Currently we only display a static landing page (notice).
     
    kingtony, Nov 19, 2009 IP
  2. UGLYSOB

    UGLYSOB Peon

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Of course. Using apache, you can make it so only certain people can access the page or require a username/password. Very easy, probably would take about 10 mins of work.
     
    UGLYSOB, Nov 19, 2009 IP
  3. vinpkl

    vinpkl Active Member

    Messages:
    899
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    58
    #3
    dont upload it in the root folder directly.

    create a new folder in root folder and upload in it.

    only you will know the name of the folder and only you will be able to access it.

    also dont add any meta tags.

    vineet
     
    vinpkl, Nov 19, 2009 IP
  4. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Do both together. Shove the whole page in a subfolder (so it cannot be reached simply by yoursite.com that visitors use) and use either a robots.txt (you should have that anyway) or the username/password solution for that whole folder. Both are good ideas.

    Sorry to hear it didn't work out nicely re the design.
     
    Stomme poes, Nov 19, 2009 IP
  5. kingtony

    kingtony Peon

    Messages:
    38
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Ah thanks so much for your quick responses. Makes sense, we will proceed accordingly.
     
    kingtony, Nov 19, 2009 IP
  6. UGLYSOB

    UGLYSOB Peon

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Or just not put it up, they wont see it then ;-)
     
    UGLYSOB, Nov 19, 2009 IP
  7. h3xb00t3r

    h3xb00t3r Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    If your host has cpanel you can password protect it very easy :)
     
    h3xb00t3r, Nov 19, 2009 IP
  8. bluebenz

    bluebenz Well-Known Member

    Messages:
    876
    Likes Received:
    9
    Best Answers:
    2
    Trophy Points:
    138
    #8
    very simple, just upload it to a new folder, and make your home an underconstruction notice..
     
    bluebenz, Nov 20, 2009 IP
  9. Ibn Juferi

    Ibn Juferi Prominent Member

    Messages:
    6,221
    Likes Received:
    365
    Best Answers:
    0
    Trophy Points:
    310
    #9
    You can use htaccess to block your site from being viewable to public. But why are you paying for something you dislike?
     
    Ibn Juferi, Nov 20, 2009 IP
  10. UGLYSOB

    UGLYSOB Peon

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Delete the website, works every time.
     
    UGLYSOB, Nov 23, 2009 IP
  11. PHPmyMirror

    PHPmyMirror Peon

    Messages:
    93
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Exactly what i was thinking... Usually you pay for something you want
     
    PHPmyMirror, Nov 23, 2009 IP
  12. HarryJackson

    HarryJackson Peon

    Messages:
    181
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #12
    you can load your site in new folder and at home give under construction error..
     
    HarryJackson, Nov 24, 2009 IP
  13. Astroman

    Astroman Well-Known Member

    Messages:
    2,355
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    135
    #13
    If you don't like the design you shouldn't be paying for it in my opinion. Other than that the repeated, ad nauseum, suggestions above are fine.
     
    Astroman, Nov 24, 2009 IP
  14. lastfiend

    lastfiend Greenhorn

    Messages:
    50
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #14
    Make a "This site is currently under construction" is the best way to keep your visitor for coming later.
     
    lastfiend, Nov 24, 2009 IP
  15. jpstokes

    jpstokes Peon

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    You can also use the .htaccess and .htpasswd files to create the username / password login option.
     
    jpstokes, Nov 24, 2009 IP
  16. tomcash

    tomcash Well-Known Member

    Messages:
    432
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    180
    #16
    You want to prevent certain visitors or domains or IP adress to come and visit your website? Here's the guide on how to block visitors to your site:

    Create a .htaccess file and add the following code--changing the IPs to suit your needs--each command on one line each:

    order allow,deny
    deny from 198.10.1.2
    deny from 039.71.1.
    allow from all

    You can deny access based upon IP address or an IP block. The above blocks access to the site from 123.45.6.7, and from any sub domain

    under the IP block 012.34.5. (012.34.5.1, 012.34.5.2, 012.34.5.3, etc.)

    You can also set an option for deny from all, which would of course deny everyone. You can also allow or deny by domain name rather than IP.

    You can also block website visitors through cPanel. Go to IP Deny Manager and follow the instruction over there.
     
    tomcash, Nov 24, 2009 IP