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
Category: Apache
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
HOW TO ENABLE GZIP COMPRESSION IN APACHE
by: Karal Max The mod_deflate module provides the DEFLATE output filter that allows the output from your server to be compressed before being sent to the client over the network. mod_deflate is the replacement of mod_gzip which was used with an older version of Apache. ENABLE GZIP MODULE IN APACHE By default, Read More
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
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
How to disable RC4 cipher suite on an Apache server
How to disable RC4 cipher suite on an Apache server Checking the configuration with Qualys SSL Labs, the results page shows “This server accepts the RC4 cipher, which is weak. Grade capped to B.”This is a very common issue on old versions of Apache like 2.2.XSo, we need to disable the RC4 to avoid the Read More