drupal8 mac apache 安装后不起作用

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 安装后不起作用)