Ubuntu-如何直接将example.com/opencart/index.php定向到http://example.com/和www.example.com?

时间:2018-08-19 05:53:36

标签: php web ubuntu-16.04 vps opencart-3

我刚刚使用Ubuntu在VPS上创建了一个网站,并安装了OpenCart。当我打开它时,它看起来像http://example.com/opencart/index.php。有没有一种方法可以缩短或定向到http://example.com和www.example.com?

也许我错过了一些我必须要做的设置。请有人帮助我逐步解决此问题,因为我刚刚学会了创建网站。

谢谢

I Wayan Arthana

1 个答案:

答案 0 :(得分:-1)

您可以设置虚拟主机打击:

Apache:

<VirtualHost *:80>  
    DocumentRoot "/home/xxx/opencart"  
    ServerName myvirtualhost.com  
    DirectoryIndex index.html  index.php
    <Directory "/home/xxx/opencart">  
    Options -Indexes FollowSymLinks  
    AllowOverride None  
    Order allow,deny  
    Allow from all  
    </Directory>  
    ErrorLog "logs/myvirtualhost.com-error.log"  
    CustomLog "logs/myvirtualhost.com-access.log" common  
</VirtualHost>