按照谷歌在App Engine上设置WordPress的教程,我在那里迁移了一些我的网站,但我正在努力解决一件事。出于这个原因或者说我需要通过自定义域和没有SSL支持来访问wp-admin后端。
无论我在app.yaml中放什么
答案 0 :(得分:5)
我遇到了类似的问题,不知道它们是否相同,但你可以尝试我的解决方案。
我的问题的真正原因不是GAE,而是 appengine-wordpress-plugin
1,找到php文件“wordpress \ wp-content \ plugins \ google-app-engine \ modules \ core.php”
2,搜索字符串“is_production”并注释掉下面的代码:
if( is_production() ) {
/* please comment this two statements
add_filter( 'secure_auth_redirect', '__return_true' );
force_ssl_admin( true );
*/
other code...
}
3,不要忘记在app.yaml中设置secure:never