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