Fix htaccess not being read

You try to setup a project with relative urls only to discover that the browser displays an unexplainable error (“page not found” or the famous “localhost not working” error). You ensure that the rules in the htaccess are correct. Still the same thing. Suddenly, it hits you – probably the htaccess is not being read correctly or maybe not being read at all! Well you couldn’t be more right!

htaccess not working

How to fix htaccess that is not read?

Turns out, htaccess file has to be enabled (which is not enabled by default). This can be done in 2 easy steps –


1. Enabling htaccess file –

To enable htaccess, you need to update the apache configuration.
To find your apache config file, you can use the following commands –

// Get absolute path of Apache
$ ps -ef | grep apache
apache   12846 14590  0 Oct20 ?        00:00:00 /usr/sbin/apache2

// Get the root and the name of the config file
$ /usr/sbin/apache2 -V | grep HTTPD_ROOT           // /etc/apache2/
$ /usr/sbin/apache2 -V | grep SERVER_CONFIG_FILE   // apache2.conf

As seen, we found out that our config file is located at /etc/apache2/apache2.conf
(For some shared hosts, the config file can be found using the httpd -V or apache2ctl -V commands instead)
Open your apache configuration file and make changes to it –

Change AllowOverride None

<Directory /var/www/html/>
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

to AllowOverride All.

<Directory /var/www/html/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>

This basically allows the rules written in the htaccess file to override routing rules for this directory (/var/www/html/). Note that /var/www/html is the default web root for Ubuntu 14.x onwards. This could be different/customized as per one’s project.

2. Enable module rewrite –

You can enable module rewrite by executing the following in your terminal

$ sudo a2enmod rewrite

Once you do this, restart apache so that the new changes should take effect.

$ sudo service apache2 restart 
$ sudo systemctl restart apache2    // alternate way

That should be it. Refreshing your page should start functioning correctly based on the rules defined in your htaccess file.


Bonus

Here is an extensive list of htaccess snippets that I found pretty helpful and so could you – https://github.com/phanan/htaccess

You may also verify that your htaccess is syntactically correct using any online htaccess validator tools. Here’s one if that interests you – http://www.htaccesscheck.com/


References

Hope this helped! 🙂
Cheers.

Leave a Reply