I am new to PHP. Just to get started with things, I created a new directory and copied some CSS and JS files I've been working on and created a PHP file and coped the HTML Code in to it.
Directory:
Then I created a app.yaml file:
application: project-test1234323
version: 1
runtime: php55
api_version: 1
handlers:
- url: /.*
script: feed.php
Header of the feed.php File:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="font-awesome/css/font-awesome.css" rel="stylesheet">
<!-- Toastr style -->
<link href="css/plugins/toastr/toastr.min.css" rel="stylesheet">
<!-- Gritter -->
<link href="js/plugins/gritter/jquery.gritter.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
I deployed this to my Google App Engine Project (using Google App Engine Launcher for WIndows) and I end up with this:
Why am I not seeing my style sheets or any of the web content for that matter. Have I configured the Directory wrong?