gpt4 book ai didi

HHVM - 重写单个入口点的规则

转载 作者:行者123 更新时间:2023-12-02 00:04:52 26 4
gpt4 key购买 nike

我目前正在测试 HipHop 虚拟机是否值得一个网络应用程序。以前,我习惯于使用这个 htacess 文件在 LAMP 环境中运行它:

Options +FollowSymLinks
IndexIgnore */*
# Turn on the RewriteEngine
RewriteEngine On
# Rules
RewriteRule ^(Templates|Ressources)($|/) - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php

谁能告诉我如何在 hhvm.hdf 文件中配置 VirutalHost 以实现此目的?

最佳答案

您可以尝试组合使用 AllowedDirectoriesVirtualHost:

AllowedDirectories {
* = Templates
* = Ressources
}

VirtualHost {
* {
Pattern = .*
RewriteRules {
* {
pattern = ^(.*)$
to = index.php$1
qsa = true
}
}
}
}

关于HHVM - 重写单个入口点的规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18965025/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com