能否把默认文件设置到其他根目录
我的网站需要使用的php是在public根目录里的index.php我需要怎么做才能这样本帖最后由 stars 于 2020-12-10 02:46 编辑
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ /public/$1
RewriteRule ^ /public/index.php
</IfModule>
页:
[1]