我有一个小问题,我有搜索和尝试这么多到这一点,我现在不知道该怎么办。
我的网址是:https://mypage/xxxx/但我需要去https://mypage/xxxx/public/看到页面.
在xxxx中,我有一个.htaccess为空
所以当我去我的网页https://mypage/xxxx/我可以看到所有的文件夹.
当我输入https://mypage/xxxx/public时,我可以看到页面。我只是想去https://mypage/xxxx/看看我的页面.
在我的公共文件夹中,我有这个.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>
字符串
我不知道该怎么办。
支持者:这是我的结构,我的xxxx是一个Laravel页面。
- public_html (main root)
--- xxxx
------- App
------- bootstrap
------- config
------- public
------- resources
------- routes
--- subfolder 2
--- subfolder 3
型
我需要去public_html/xxxx/public来查看我的页面。但是我应该去public_html/xxxx查看页面。htaccess有问题。
1条答案
按热度按时间x759pob21#
在文件夹中的**.htaccess**文件中
public_html/xxxx/
添加此内容:
字符串