apache配置文件 /etc/httpd/conf/httpd.conf
找到以下内容
Include conf.modules.d/*.conf
在此行内容的下一行添加
LoadModule rewrite_module modules/mod_rewrite.so
继续找到以下内容
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
将此处的AllowOverride None修改为AllowOverride all。
这里注意一点的是,AllowOverride None有一共有3处左右!所以一定要找对地方,千万千万注意!!!!
放宽网页的执行时间,30秒就超时,太短了。
max_execution_time = 300
安装opcache模块
sudo dnf install php-opcache*
sudo chmod a+w /var/www/html/drupal -R
sudo chown -R apache:apache /var/www/html/drupal/