On Google App Engine I want the file path to be "www/community" and the url to be just "community" but it's failing when trying to determine the route.
This works:
This does not work:
When I hit http://www.domain.com/community/ it loads the sidebars but says "Route community/ could not be found." or "The requested page could not be found."
Any ideas?
This works:
Code:
Path to XF files:
$SERVER['DOCUMENT_ROOT'] . '/community'
App.yaml:
# Xenforo
- url: /community.*
script: community/index.php
This does not work:
Code:
Path to XF files:
$SERVER['DOCUMENT_ROOT'] . '/www/community'
App.yaml:
# Xenforo
- url: /community.*
script: www/community/index.php
When I hit http://www.domain.com/community/ it loads the sidebars but says "Route community/ could not be found." or "The requested page could not be found."
Any ideas?
Last edited: