简体   繁体   English

CodeIgniter部署在Google Cloud中

[英]CodeIgniter deploy in Google Cloud

I have deployed CodeIgniter framework in Google Cloud app engine. 我已经在Google Cloud应用引擎中部署了CodeIgniter框架。 But when I am trying to access website it is showing 404. I have attached screenshot of file structure . 但是,当我尝试访问网站时,它显示404。我已附加了文件结构的屏幕截图。

在此处输入图片说明

Please help. 请帮忙。

runtime: php55
threadsafe: yes
api_version: 1

handlers:
- url: /user_guide/
  static_files: user_guide/index.html
  upload: user_guide/index.html

- url: /user_guide/(.*)
  static_files: user_guide/\1
  upload: user_guide/(.*)

- url: /static/(.*)
  static_files: static/\1
  upload: static/(.*)

- url: .*
  script: index.php

skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^(.*/)?.*\.bak$

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM