我想知道是否可以将我的域指向一个位于根目录中的两个文件夹的目录。
我的托管公司不允许我更改此内容,因此我需要使用.htaccess文件执行此操作。
这是我的结构......
public_html
.htaccess <-- Here will be my .htaccess file.
folder
folder
folder
folder
public <-- My desired folder.
所有请求必须指向框架.htaccess文件存在且index.php文件存在的公共文件夹2级。
我希望这一切都有道理。
感谢。
答案 0 :(得分:1)
使用 RewriteBase
RewriteEngine On
RewriteBase /folder/public/
RewriteRule . /folder/public/index.php [L]