GetSecureScore

Configure Apache 2 to Control Browser Caching

Original: https://www.liquidweb.com/kb/how-to-configure-apache-2-to-control-browser-caching/ by Jason Potter | Updated: June 4, 2020Reading Time: 9 minutes Today we are configuring browser caching control on common Apache 2 Dedicated servers or VPS servers. Caching is a great tool to reduce server resource consumption, bandwidth utilization and provide a faster end-user experience to visitors. To get familiar with caching concepts, simply review our ‘What is Caching?’ tutorial. Preflight Check Read More

GetSecureScore

How To Move A WordPress Site Manually (No Plug-in And Phpmyadmin Required)

How To Move A WordPress Site Manually (No Plugin And Phpmyadmin Required)? This article is assuming both old and new server are ruing same software, like Apache, MySQL, PHP, etc. Step 1: Backup all files on the old server  /var/www  /etc/httpd  /etc/php.ini Step 2: check the exiting configures from wp-config.php define( ‘DB_NAME’, ‘wp’ ); /** Read More

GetSecureScore

Redirect Request from HTTP to HTTPS (Apache)

original: https://cwiki.apache.org/confluence/display/HTTPD/RedirectSSL Let’s say you want http://www.example.com/secure/ to always be sent over SSL (I presume here that both the normal and the SSL vhost have the same content). You could do this by linking to the correct page from within your HTML pages… but there will always be some user who will sneak by it that way. Read More

GetSecureScore

2 Solutions for still showing “not secure” via HTTPS (with SSL)

Overview A common issue after adding an SSL certificate is that your browser still shows your site as insecure. This most often happens because there are links on your page that still point to HTTP instead of HTTPS. For example, look at the following code to link an image. <img src=”http://www.example.com/images/pic_mountain.jpg” alt=”Mountain View”> Notice how Read More