编辑:我已确认我的网络服务器的 DocumentRoot 指向var/www
我的所有 CRM 文件所在的位置。
只是为了解决这个问题:我被坑了,他们知道我在工作中不懂 Ubuntu,但他们需要为新客户解决这个问题。所以请不要说教。
快进...
我有一个运行 Ubuntu 16.04 LTS 的客户。他们可能运行的是 LAMP 和一个名为 SuiteCRM 的 CRM;但是,我无法访问它。即使是从它所在的机器上也无法访问。
当我尝试去做的时候:http://本地主机/suitecrm
我收到以下错误:
Not Found
The requested URL /suitecrm was not found on this server.
Apache/2.4.18 (Ubuntu) Server at localhost Port 80
起初我以为可能是 LAMP 服务没有启动;但是,我可以访问localhost/phpmyadmin
。
文件已存入var/www
...一直工作到星期五。
你们有什么建议可以让我尝试一下吗?我很迷茫,我已经花了好几个小时才搞定。
编辑#2:
我的 000-default.conf 文件:
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>