我在cPanel上部署了我的laravel项目,所有工作除了一件事:当我登录时,如果我点击创建文章按钮,那么我应该看到一个创建文章页面,但我得到NotFoundHttpException
错误。在我的本地计算机上使用xampp这个功能有效,我不知道为什么会这样。有人可以帮帮我吗?
这是我的htaccess文件:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>