dongmisa4779 2013-12-12 04:15
浏览 33
已采纳

在laravel 4中访问路线在LAMP中不起作用

hey guys im new to laravel then im starting to access the home using

Route::get('/home', function()
{   
    //return 'foo';
return View::make('hello');
});

with url: http://web.learninglaravel.dev/home, before with this url i can access the home with route '/' without using the php artisan serve. Im using ubuntu 12.04. and my directory is like this

enter image description here

because im using mod_vhost_alias

and the browser gives me this enter image description here

please help because im a newbie in laravel. tnx in advanced..

  • 写回答

3条回答 默认 最新

  • dongzhan1948 2013-12-12 18:43
    关注

    Either remove or add the / on index.php.

    Without

    <IfModule mod_rewrite.c>
        Options -MultiViews
        RewriteEngine On
    
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^ index.php [L]
    </IfModule>
    

    With

    <IfModule mod_rewrite.c>
        Options -MultiViews
        RewriteEngine On
    
    RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^ /index.php [L]
    </IfModule>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 基于决策树的数字信号处理,2ask 2psk 2fsk的代码,检查下报错的原因
  • ¥20 python作业求过程
  • ¥15 wincc已组态的变量过多
  • ¥60 如图:直线与椭圆X轴平行,求直线与椭圆任意一点的相切坐标计算公式
  • ¥50 如何用python使用opencv里的cv::cudacodec::VideoWriter函数对视频进行GPU硬编码
  • ¥100 c#solidworks 二次开发 工程图自动标边线法兰 等折弯尺寸怎么标
  • ¥15 halcon DrawRegion 提示错误
  • ¥15 FastAPI Uvicorn启动显示404
  • ¥15 centos7.9脚本,怎么排除特定的访问记录
  • ¥15 关于#Django#的问题:我的静态文件呢?