.htaccess 如果文件存在,将文档根目录设置为子目录
.htaccess If file exists, set document root to subdirectory
我想使用 .htaccess 设置一个规则,如果 config.php 存在,则将根目录设置为 /,如果 config.php 不存在,则将根目录设置为 /install。
如何做到这一点?
谢谢!
RewriteEngine on
RewriteCond %{DOCUMENT_ROOT}/config.php !-f
RewriteRule ^/?$ /install [L]
如果 /config.php 在您的文件系统中不存在,这将设置 /install 作为您的主目录。
我想使用 .htaccess 设置一个规则,如果 config.php 存在,则将根目录设置为 /,如果 config.php 不存在,则将根目录设置为 /install。
如何做到这一点?
谢谢!
RewriteEngine on
RewriteCond %{DOCUMENT_ROOT}/config.php !-f
RewriteRule ^/?$ /install [L]
如果 /config.php 在您的文件系统中不存在,这将设置 /install 作为您的主目录。