我很困惑使用ubuntu在apache2中为CI设置虚拟主机。
我有使用虚拟主机在本地运行的网站,但是当我打开我的导航链接时。
mysite.com/about_us
它无法打开,并说: 404 Not Found
这是我的虚拟主机代码
<?php
require 'restclient.php';
$api = new RestClient();
$result = $api->get("http://beka.vn/api/BkMobileLogin/GetGroup/phat.ls");
if($result->info->http_code == 200)
echo ($result->response);
else
echo "false";
?>
这是我的.htaccess代码
<VirtualHost *:80>
ServerAdmin webmaster@blade.co.loc
ServerName blade.co.loc
ServerAlias www.blade.co.loc
DocumentRoot /var/www/html/new/
<Directory /var/www/html/new/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
答案 0 :(得分:0)
请按照以下步骤操作。它会引导你走正确的道路。它描述了每一个细节。并检查您是否正确地给出了routes.php中的链接。这是为了在ubuntu中创建虚拟主机 https://support.rackspace.com/how-to/set-up-apache-virtual-hosts-on-ubuntu/