美文网首页
drupal8 mac apache  安装后不起作用

drupal8 mac apache  安装后不起作用

作者: AnnaJIAN | 来源:发表于2019-07-12 14:58 被阅读0次

https://www.drupal.org/docs/8/troubleshooting-drupal-8/fix-drupal-8-clean-urls-problems

主要原因是rewrite_mode 没有开启

apache2 httpd.conf 开启rewrite_mode 之后
.htaccess 需要加入以下代码。

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ index.php [L]

相关文章

网友评论

      本文标题:drupal8 mac apache  安装后不起作用

      本文链接:https://www.haomeiwen.com/subject/otoekctx.html