Is it necessary to 'turn off' wordpress while under development?

hongseng

Registered Member
Joined
Dec 12, 2014
Messages
51
Reaction score
1
I was just thinking if is it a good practice to 'turn off' your wordpress site while development to avoid google from reaching your page (while there's any content)? if yes, how can I accomplish it in wordpress?
 
I am using this Plugin = https://wordpress.org/plugins/wet-maintenance/
while developing.
 
To disable indexing go to wordpress dashboard >> Settings >> Reading and check "Discourage search engines from indexing this site"
Don't forget to uncheck this when you're done with the site
 
OR you may just edit your .htaccess file so that its only visible for you while you are developing it .
use the following code :


order deny,allow
deny from all
allow from 111.222.333.444

Edit the ip address to your own.
 
It's your choice whether you want to turn it off or not. But if you want to, you can use a Wordpress plugin to do that.
 
Its not NECESSARY but "RECOMMENDED".
And as said by other members, why not just use a plugin for that. Its pretty simple.
 
For those of you who say, turn it off or deny during development, would you care to say why? Rather than just, deny etc, it might prove useful to someone rather than most threads turning into a yes no opinion fest.
 
There are a bunch of easy plugins you can use. Literally search plugins for "coming soon" and choose.
 
Back
Top