我的apache配置有问题。这是我的虚拟主机设置。
<VirtualHost *:80>
ServerName orocrm.75cl.sg
DirectoryIndex app.php
DocumentRoot /var/www/html/oro/web
<Directory /var/www/html/oro/web>
# enable the .htaccess rewrites
AllowOverride All
Require all granted
</Directory>
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined
</VirtualHost>
但是,当我访问其他菜单时, http: //orocrm.75cl.sg/oro/web/app.php/总是显示在我的目标菜单前面。因此,它显示为 404 页面。例如http://orocrm.75cl.sg/oro/web/app.php/magento/cart/。应该是这样http://orocrm.75cl.sg/app.php/magento/cart/
我可以知道如何解决这个问题。