.htaccess 无法从存储文件夹访问图像

pxy2qtax  于 2022-11-16  发布在  其他
关注(0)|答案(1)|浏览(201)

我的网站无法从存储文件夹中访问图像,我已经在godday中部署了我的Laravel项目。
这是我的htaccess文件

<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule> 

RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^ ^$1 [N]

RewriteCond %{REQUEST_URI} (\.\w+$) [NC]
RewriteRule ^(.*)$ public/$1 

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ server.php
</IfModule>
mccptt67

mccptt671#

运行php artisan storage:link,之后一切都应该正常。

相关问题