Utilizing expires headers is an important part of optimizing your website. At times it can be tricky. Apache2 configuration syntax is extremely particular. I’ve gathered a few items to check when you’ve experienced this issue.
When troubleshooting anything with Apache 2, your first step should be checking the apache error log. The Apache logs will let you know everything that is going on with your web server.
The location is
[code]/var/log/apache2/[/code]
Within your default configuration file
[code]/etc/apache2/sites-available[/code]
or your .htaccess files. There may be references to an Apache module that does not exist.
[alert type=”info”]
Example:
You may be familiar with this code in .htaccess
[code]<IfModule mod_rewrite.c>[/code]
. This is a if statement that will ignore any trailing directives before the closing tag. This will prevent Apache from crashing if the module is not present. Many will add a .htaccess directive without the if statement resulting in a crash if the module isn’t there.
[/alert]
Apache has a few files you should be checking.
apache2.conf which is located at
[code]/etc/apache2[/code]
envvars configuration file which is located in the same place
Your configuration files located in
[code]/etc/apache2/sites-available[/code]
[alert type=” info”] If you’re not sure which one is available, you can run
[code]apachectl -S[/code]
on the command line[/alert]
That’s about all I can think of when I troubleshoot Apache issues. Keep in mind, when troubleshooting Apache 2, your error logs are your best friend. If I’m missing something please let me know.
<h2>Prerequisites</h2> It's always best to upgrade your php version to the latest stable version but…
Quick Introduction Recently I was optimizing a client website on a development server. Typically when…
Are you looking for the easiest website builders recommended for beginners? Look no further we…
With the fierce competition in the online world, it's important to have a strong Google…
This website uses cookies.