我创建一个这样的文件example.ini
:
hhvm.server.type = proxygen
hhvm.server.default_document = index.php
hhvm.virtual_host[default][rewrite_rules][common][pattern] = "(.*)"
hhvm.virtual_host[default][rewrite_rules][common][to] = "index.php/$1"
hhvm.virtual_host[default][rewrite_rules][common][qsa] = true
并在终端调用:
$ hhvm -m server -p 9000 -d hhvm.server.source_root=/home/user/project -c example.ini
它工作正常,但是我仍然可以浏览与项目位于同一文件夹中的现有文件,但我想要的是所有请求都应该发送到"index.php",我该怎么做?