我的Drupal已安装,但没有一个链接有效


My Drupal installed but none of the links are working

所有选项卡"内容","结构","外观","配置"等选项卡都将我发送到未找到错误。它位于"干净的网址"上,但找不到该页面:

Not Found
The requested URL /drupal/admin/modules was not found on this server.

我已经尝试了网络上的许多解决方案,但似乎没有任何效果。我在 apache 中的 httpd.conf 具有允许覆盖全部打开

<Directory />
AllowOverride all
Options Includes
Require all denied
</Directory>

我的文件夹的结构是 C:'Sites'drupal ..htaccess文件已RewriteBase /drupal未注释。我还错过了什么?我在 PHP 7 上

终于想通了问题所在。这只是在 .htaccess 中取消注释方面的问题。这两个# RewriteBase /drupal都应该被注释掉,RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]应该被取消注释。不知何故,他们都被颠倒了,这引起了很多混乱。