赞
踩
yum安装php7.2 httpd后,apache无法正常解析index.php
<IfModule dir_module>
DirectoryIndex index.php index.htm index.html #增加index.php
</IfModule>
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php #增加php类型
SetHandler "proxy:fcgi://127.0.0.1:9000" #增加到httpd.conf
#也可用socket模式连接
#/path/to/unix/socket必须和php-fpm.conf里面配置的一致
#SetHandler "proxy:unix:/path/to/unix/socket|fcgi://localhost" // unix socket 形式
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
systemctl restart httpd #重启
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。