In my CodeIgniter application, I have set a handler in the app.yaml file for the following:
handlers:
- url: /task.php
script: task.php
This file is in the root directory.
In a typical LAMP/WAMP environment, a .htaccess file would be used to allow access, as typically you are only allowed to access the index.php file (that's how CI works).
So, there is no .htaccess in GAE, only app.yaml (and dispatch.yaml etc)
Why would there be a difference?
(I understand this is most likely an issue with how CI works, but the fact that the yaml file gives different results must be something to do with GAE?)