gpt4 book ai didi

php - Laravel 共享主机 .htaccess

转载 作者:可可西里 更新时间:2023-10-31 23:30:54 27 4
gpt4 key购买 nike

我正在尝试将 Laravel 项目部署到共享主机上,我已经成功完成了大部分艰苦的工作,但我无法在没有 Forbidden 问题的情况下剥离/public 目录。

该网站工作并显示这些链接的相同页面

  • www.mywebsite.com/test/index.php
  • www.mywebsite.com/test/public/

但是没有/index.php 它返回 ->

Forbidden

You don't have permission to access /test/ on this server.

目前我的 .htaccess 如下所示。

<IfModule mod_rewrite.c>

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ public/index.php [L]

</IfModule>

有什么想法吗?

最佳答案

这是我使用的魔术脚本(添加到 public_html 中的 .htaccess)

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>

关于php - Laravel 共享主机 .htaccess,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25119493/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com