text htaccess成为公共根

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text htaccess成为公共根相关的知识,希望对你有一定的参考价值。

https://www.siteground.com/kb/how_to_change_my_document_root_folder_using_an_htaccess_file/

#OPTION #1
RewriteEngine on
RewriteRule ^(.*) public/$1 [L]


OPTION #2 , for Laravel
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain-name.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.domain-name.com$
RewriteCond %{REQUEST_URI} !public/
RewriteRule (.*) /public/$1 [L]

以上是关于text htaccess成为公共根的主要内容,如果未能解决你的问题,请参考以下文章

.htaccess 的公共目录

公共.htaccess重写规则

.htaccess 没有文件夹的根重写

.htaccess 从站点根目录重定向到公共文件夹,在 URL 中隐藏“公共”?

从 URL Laravel 5.3 中删除公共

Laravel 7.x - 如何从 URL 中删除“公共”?