Apache重写URL与Laravel 5如何删除url中的/public/index.php

时间:2015-08-06 03:53:32

标签: php apache .htaccess mod-rewrite

apache根文件是〜/ Sites /。

我的laravel项目在〜/ Sites / laravelTest中被称为laravelTest

索引网址为http://localhost/laravel/public/index.php

宁静的网址是http://localhost/laravel/public/index.php/ $ 1 / $ 2 ...

如何删除/public/index.php?

如何设置.htaccess文件...

我只能删除index.php,但无法删除/ public /

感谢。

1 个答案:

答案 0 :(得分:2)

有许多解决方案可以删除Laravel 4中的index.php以从网址中删除public/index.php

我建议你这个简单的步骤

  1. 将Laravel根文件夹中的文件server.php重命名为index.php

  2. .htaccess文件从/public目录移至Laravel根文件夹。

  3. 参考:As simple like this