我安装了Drupal,但没有一个链接正常工作

时间:2016-02-02 06:38:44

标签: php apache .htaccess drupal

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

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

我在网上尝试了很多解决方案,但似乎没有任何效果。我在apache中的httpd.conf中有AllowOverride All

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

我的文件夹结构为C:\Sites\drupal.htaccess文件已取消注释RewriteBase /drupal。我还缺少什么?我在使用PHP 7

1 个答案:

答案 0 :(得分:0)

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