Laravel Pretty URL不会工作

时间:2016-04-04 12:03:44

标签: .htaccess laravel-5.1

我试图删除' index.php'我的项目的网址,但没有任何作用。几个星期以来,我一直在搞乱我的.htaccess,但没有什么......没有用!我不知道出了什么问题。 mod_rewrite确实启用了。这是我公共目录下.htaccess的内容:

<IfModule mod_rewrite.c>
  RewriteBase /var/www/html/arquivos/index.php/
  <IfModule mod_negotiation.c>
    Options +FollowSymlinks -MultiViews
  </IfModule>

  RewriteEngine On

  # Redirect Trailing Slashes...
  RewriteRule ^(.*)/$ /$1 [L,R=301]

  # Handle Front Controller...
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^ index.php [L]
</IfModule>

有什么建议吗?感谢。

编辑:我的目录结构:

/var/www
  laravelproject/
    public/
      index.php
      main.cs
      ...
  html/ (apache server public folder)
    project (sym link to /var/www/laravelproject/public/)

我可以通过此网址访问我的项目:

本地主机/项目/ index.php的/

我想要做的是删除&#34; index.php&#34;我的网址。

1 个答案:

答案 0 :(得分:0)