I created a new page under the same path on the server index.html. Why didn't it work?

index displays normally:

clipboard.png



clipboard.png


:
clipboard.png

< hr >

it is obvious that index.html created a new page in the same path, so why is loadApp.html invalid?

Mar.31,2021

guess that your server is built into ThinkPHP? So instead of map a local path, it parses it according to certain rules, so it can't be seen.


when ThinkPHP accesses index.html, the index method of the Index controller of the Index module is accessed by default.
if you want to add loadApp, you need to visit Index/index/loadApp

Menu