我在 LAMP 服务器上使用 PHP 制作了网站,现在我想把它放在 GAE 上,但它似乎无法识别 javascript。这是我的 yaml 文件:
application: helloworld
version: 1
runtime: php
api_version: 1
handlers:
- url: /stylesheets
static_dir: stylesheets
- url: /.*
script: index.php
- url: /js
static_dir: js
然后在html中我像这样加载它:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="js/script.js"></script>
请帮忙