标签: apache .htaccess redirect document-root apache-modules
我想使用.htaccess设置规则,如果config.php存在,则将根目录设置为/,如果config.php不存在,则将根目录设置为/ install。
如何做到这一点?
谢谢!
答案 0 :(得分:0)
RewriteEngine on RewriteCond %{DOCUMENT_ROOT}/config.php !-f RewriteRule ^/?$ /install [L]
如果您的文件系统中不存在/config.php,这将设置/安装为您的主目录。