Home
/
Get Started
/
Site Tools control panel
/
How to limit access to website during development?

How to limit access to website during development?

To limit access to your website during its development, so that only you and your developer can access it, there are several ways to do that.

Watch our video tutorial on how to limit access in Site Tools

Use a maintenance plugin

There are plugins for web applications that provide maintenance functionality. Depending on the plugin used the maintenance functionality may be different, but usually, visitors to your website see a “coming soon” page or a page that shows a timer how much is left until the website is publicly accessible. Using plugins allows you to customize the maintenance pages, so you can develop them to match the look on your website. You can find such plugins in the official extension repository of the website’s application, for example:

Password protect the website

To add password protection on your website, go to your Site Tools > Security > Protected URLs. This will make the website only accessible to people who know the credentials for accessing it. More information on how to use the tool can be found here.

Block all access and allow only your IP

To use this method, open the .htaccess file for your website and inside it, place the following lines at the top:

order deny,allow
deny from all
allow from IP.IP.IP.IP

Replace IP.IP.IP.IP with your local IP address and save the file. To edit the .htaccess file use FTP, SSH or by using the File Manager in Site Tools.

Share This Article