当前位置: 首页 >
2016年1月8日发布的所有文章
-
sae 隐藏index.php
SAE不支持.htaccess文件,但我们可以使用SAE提供的AppConfig服务实现伪静态。 在你项目的根目录建立config.yaml文件,代码为: handle: - rewrite: if(!is_dir() && !is_file() && path~"^(.*)$") goto "index.php/$1" 这样就可以隐藏入口了。 比如这样的地址 http://serverName/index.php/Blog/read/id/1 ...