我正在尝试在 Centos 6 Apache 2 服务器中使用 WHM 配置 Akeneo。我正在关注本教程在此处输入链接描述
我在ubuntu机器上配置了这个,没有错误。我发现的问题是服务器和 php。
当我启动我的网站时,我收到以下错误。
No input file specified.
我的 httd.conf 文件如下:
<VirtualHost my-ip:80>
ServerName my-domain.co
ServerAlias mail.domain-group.co www.abs-group.co
DocumentRoot /home/user/public_html/pim-community-standard/web/
<Directory "/home/user/public_html/pim-community-standard/web">
AllowOverride None
Require all granted
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ app.php [QSA,L]
</Directory>
<Directory /home/user/public_html/pim-community-standard>
Options FollowSymlinks
</Directory>
<Directory /home/user/public_html/pim-community-standard/web/bundles>
RewriteEngine Off
</Directory>
<FilesMatch \.php$>
SetHandler "proxy:unix:/opt/cpanel/ea-php71/root/usr/var/run/php-fpm/897e2bef0970b20f1bbeeae9d7c0de8ba9c47453.sock|fcgi://my-domain.co/"
</FilesMatch>
ServerAdmin webmaster@user-group.co
UseCanonicalName Off
</VirtualHost>
我的 apache 错误日志中出现以下错误。
AH01071: Got error 'Unable to open primary script: /home/user/public_html/pim-community-standard/web/app.php (No such file or directory)\n'
在过去的两天里,我一直在努力解决这个错误。请帮我。