我正在尝试在 Amazon EC2(Linux AMI)上部署Laravel。我在.htaccess
目录和larval
目录中添加laravel/public
。
<IfModule mod_rewrite.c>
WriteEngine On
RewriteBase /laravel/public/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
当我浏览http://www.mydomaine.com/laravel/public
时,laravel第一页效果很好,但当我浏览到http://www.mydomaine.com/laravel/public/login
这样的子页面时,会出现404 Not Found
错误。如何解决这个问题,谢谢你的帮助!
答案 0 :(得分:2)
你做错了。不要在.htaccess
目录中的public
文件中进行任何更改,也不要将.htaccess
添加到Laravel根目录。
您需要将Laravel指向public
目录才能使其正常工作。例如,如果您在/path_to_laravel/public/
目录中安装了Laravel,则需要在Apache配置中使用这些设置:
DocumentRoot "/path_to_laravel/public/"
<Directory "/path_to_laravel/public/">
之后重新启动Apache,您的应用程序应该按预期工作。
使用网址,例如http://www.mydomaine.com/login
没有&#39; laravel&#39;和&#39; public&#39;。
答案 1 :(得分:0)
像阿列克谢所说的那样应该让它发挥作用。
但是,如果您确实希望应用程序位于此特定路径(/laravel/public/
)中,则可以向apache conf文件添加新指令。
添加ServerName "localhost.app/my/path"
并重新启动Apache,它应该可以正常工作。