我正在创建一个没有模板的Web应用程序。
我如何:
我不使用symfony,twig,IIS或任何模板。
Web app
- app
| - files
| | - image.png
| - api
| - class.php
- public
- index.php
- assets
| - routes.json
- templates
- base.php
- main
| - index.php
| - page.php
- connect
- connect.php
- signup.php
在main/index.php
中:
<a href="/connect">Connect</a>
在connect
页中,显示的URL应为:
https://web_app.com/connect
routes.json
将显示的href URL("path"
)链接到class.php
("action"
)中的php函数:
"index": {
"path": "/",
"action": "index"
},
"connect": {
"path": "/connect",
"action": "connect"
}