In the PHP $_SERVER variable, four variables reference the file requested.:
["SCRIPT_FILENAME"]=> string(21) "/webroot/file.php"
["REQUEST_URI"]=> string(9) "/file.php?param=valyou"
["SCRIPT_NAME"]=> string(9) "/file.php"
["PHP_SELF"]=> string(9) "/file.php"
Would/Could any of these array members not refer to the actual file requested via URL? For example, URL rewriting, which I don't have experience with or plan on using for this project.
I notice "REQUEST_URI" also includes GET variables, which I don't need.