2592019238 发表于 2020-12-9 19:59:13

能否把默认文件设置到其他根目录

我的网站需要使用的php是在public根目录里的index.php我需要怎么做才能这样

stars 发表于 2020-12-10 02:43:04

本帖最后由 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]
查看完整版本: 能否把默认文件设置到其他根目录