If you have installed Wordpress in a subfolder, add this to your .htaccess file
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/wp(/|$)
RewriteRule (.*) /wp/$1
Add this to the .htaccess file at the root of your website:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
If you want to specify the domain:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mydomain\.com$ [OR]
RewriteCond %{HTTP_HOST}...
Put this in your .htaccess to block everybody except some ip:
Deny from All
Allow from xx.xx.xx.xx
Allow from xx.xx.xx.xx
The same thing apply if you want to restrict the access to a file:
<Files admin.php>
Order Deny,Allow
Deny from all
Allow from xx.xx.xx.xx
Allow from xx.xx.xx.xx
</Files>
To install cPanel & WHM on your server, run the following command:
cd /home && curl -o latest -L https://securedownloads.cpanel.net/latest && sh latest