I am receiving 404 error message after I have enabled my Drupal clean/SEF/Short URLs

This issue usually happens after enabling the "Clean URLs" option in Drupal.

In order to resolve it, you must have a .htaccess file in your Drupal root directory containing these lines:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to reset my Drupal admin password?

Here's how you would change the admin password for your current Drupal installation: 1. Login to...

What is the path to the Drupal user/admin login page?

If the login module is disabled on your Drupal front page, it is useful to know the path to the...

How can I transfer my Drupal site from a sub-directory to my root folder?

This can be done in several easy steps.1. Change the base dir in your settings.php to point to...

How to reset my Drupal admin password?

Here's how you would change the admin password for your current Drupal installation: 1. Login to...

What is the path to the Drupal user/admin login page?

If the login module is disabled on your Drupal front page, it is useful to know the path to the...