Address bar URL

A rookie has an idiot question to ask for help, please do not hesitate to comment, thank you very much! The
browser issues an HTTP request to http://www.myserver.com/abc/def. The server uses a framework to map the URL to classes/ Handlers / ghi.php,ghi.php to include views / jkl.html. The view now displayed in the browser is the HTML code in views / jkl.html.

so which URL is displayed in the browser"s address bar now? Why? Is it still http://www.myserver.com/abc/def? Or http://myserver.com/jkl.html?

Php
Apr.07,2022

should be http://www.myserver.com/abc/def, because there is no redirection in the whole process, only route resolution through the php framework, and finally

output the contents of the jkl.html file through php.
Menu