sae 配置thinkphp

将 thinkphp 的入口文件放在 go 目录下 可防止别的目录暴露在网站下 

但是这样在sae config.yaml 上配置隐藏index.php 的代码 就会失效

handle:
 - rewrite: if(!is_dir() && !is_file() && path~"^(.*)$") goto "index.php/$1"

 

应修改为 goto go/index.php

handle:
 - rewrite: if(!is_dir() && !is_file() && path~"^(.*)$") goto "go/index.php/$1"


此时 其他控制器可访问 但是首页则会出现500 代码错误 经分析应该是 文件夹访问 !is_dir()的问题  修改为

handle:
 - rewrite: if( !is_file() && path~"^(.*)$") goto "go/index.php/$1"

 此时完全无问题

你可能感兴趣的:(sae 配置thinkphp)