4

我是 Laravel 的新手。我在本教程的帮助下设置了 Laravel 。我已经设置了虚拟主机,在我的虚拟主机上我写了这个。

<VirtualHost *:80>
    ServerName ranjitalaravel.com
   DocumentRoot "/var/www/html/laravel4/public"
   <Directory "/var/www/html/laravel4/public"> 
   </Directory>
</VirtualHost>

在我的主机文件中,即 /etc/hosts

127.0.0.1 ranjitalaravel.com

当我在浏览器上键入http://ranjitalaravel.com/时,我的 laravel 目录中的所有文件列表都会显示出来。但是当我在它之后键入 home 时,它​​会显示“在此服务器上找不到请求的 URL /home。”。我已经在应用程序文件夹内的 route.php 中编写了此代码。

Route::any('home', function()
{
    return View::make('home.index');
});
4

3 回答 3

0
<VirtualHost *:80>
    ServerAdmin postmaster@some_server
    DocumentRoot "E:/xampp/htdocs/some_server"
    ServerName some_server
    ServerAlias some_server
    ErrorLog "logs/some_server.localhost-error.log"
    CustomLog "logs/some_server.localhost-access.log" combined
</VirtualHost>

这对我来说很好,希望对你有帮助

于 2013-06-27T14:27:26.790 回答
0

试试这个配置

<VirtualHost *:80>
    ServerName ranjitalaravel.com
    DocumentRoot /var/www/html/laravel4/public
    <Directory /var/www/html/laravel4/public/>
            Options +Indexes +FollowSymLinks +MultiViews
            AllowOverride all
            Order allow,deny
            allow from all
    </Directory>
</VirtualHost>

你在使用符号链接吗?

于 2014-04-02T10:24:16.317 回答
-1

为什么不使用 PHP 5.4 内置的开发服务器,而不是使用有时会变得讨厌的 VirtualHosts。

这是安装 Laravel 后 XAMPP localhost 返回对象未找到的方式

于 2013-06-29T03:09:49.617 回答