Content
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:
1
2
3
4
|
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !–f
RewriteCond %{REQUEST_FILENAME} !–d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
|
More information on how to configure SEF URLs for Drupal is available in ourĀ tutorial.