Enable Magic Quotes using .htaccess file The magic quotes option was introduced to help protect developers from SQL injection attacks. It effectively executes addslashes() on all information received over GET, POST or COOKIE. Providing your server is configured to allow .htaccess files, adding the following line will effectively turn off Magic Quotes: If your PHP script […]
See MoreTag: htaccess files
How to Disabling Magic Quotes using .htaccess file
Disabling Magic Quotes using .htaccess file The magic quotes option was introduced to help protect developers from SQL injection attacks. It effectively executes addslashes() on all information received over GET, POST or COOKIE. Providing your server is configured to allow .htaccess files, adding the following line will effectively turn off Magic Quotes: 1. Login into […]
See MoreRedirect 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