We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 465ff98 commit 7fe8911Copy full SHA for 7fe8911
appengine/php72/wordpress/files/gae-app.php
@@ -1,5 +1,17 @@
1
2
3
+/**
4
+ * This file handles all routing for a WordPress project running on App Engine.
5
+ * It serves up the appropriate PHP file depending on the request URI.
6
+ *
7
+ * @see https://cloud.google.com/appengine/docs/standard/php7/runtime#application_startup
8
+ */
9
+
10
11
+ * Function to return a PHP file to load based on the request URI.
12
13
+ * @param string $full_request_uri The request URI derivded from $_SERVER['REQUEST_URI'].
14
15
function get_real_file_to_load($full_request_uri)
16
{
17
$request_uri = @parse_url($full_request_uri)['path'];
0 commit comments