简体   繁体   中英

CodeIgniter deploy in Google Cloud

I have deployed CodeIgniter framework in Google Cloud app engine. But when I am trying to access website it is showing 404. I have attached screenshot of file structure .

在此处输入图片说明

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$

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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