Drupal: Internal Server Error
While restoring the Drupal Project, Index page was displayed properly. Issue I had encountered was "Internal Server error" on clicking any link given on index page.
That was issue because Clean URL was enabled and .htaccess missing the argument.
To resolve the issue. Just add argument in the .htaccess file containing your rewrite rules, after RewriteEngine on, add RewriteBase /.
Example:
RewriteEngine on
RewriteBase /
This will resolve the issue if clean URL is enabled.
That was issue because Clean URL was enabled and .htaccess missing the argument.
To resolve the issue. Just add argument in the .htaccess file containing your rewrite rules, after RewriteEngine on, add RewriteBase /.
Example:
RewriteEngine on
RewriteBase /
This will resolve the issue if clean URL is enabled.
Comments