Redirect all URLs to anoter blog URLs

Redirect all URLs to anoter blog URLs If you want to redirect all the URLs  from one blog to another blog URLs then add the following rewrite rules in .htaccess files. Example : I have redirected  my old blog from “http://www.bestdesigns.co.in/blog to my new domain https://Hostripples.com. I have added the following rewrite rules into old blog […]

See More

How to upgrade php version on plesk

How to upgrade php version on plesk ? Ans : – You can simply upgrade the php version on LINUX PLESK server by using following steps root@server [/] # cd /usr/local/src root@server [/usr/local/src]#  wget -q -O – http://www.atomicorp.com/installers/atomic.sh | sh root@server [/usr/local/src]#  yum upgrade php root@server [/usr/local/src]#  /etc/init.d/psa stopall root@server [/usr/local/src]#  /etc/init.d/psa startall root@server [/usr/local/src]#  […]

See More

Block FTP access using firewall

Block FTP access using the IPtables(Default system firewall) 1) If you want to completely disable the FTP access on the server then run the command : root@server[#] iptables -A INPUT -p tcp –dport 21 -j DROP 2) If you want to block FTP access for a Specific IP then run the below command : root@server[#] […]

See More