I uploaded my webpage using google app engine and it is working fine. It is a very simple webpage with 6 static files (.html all of them)
I need to Remove .html extension from URL. For example: I have www.example.com/contact.html, I want www.example.com/contact
My current app.yaml is
runtime: php55
api_version: 1
threadsafe: true
handlers:
- url: /
static_files: website/index.html
upload: website/index.html
- url: /
static_dir: website
All html files are Inside the "Website" folder, so how can i hide .html extension from URL
So Please help me to fix it.