如何在没有任何模板的情况下设置虚拟目录?

时间:2018-11-04 10:33:56

标签: php web-applications virtual-directory

我正在创建一个没有模板的Web应用程序。

我如何:

  1. 设置虚拟目录
  2. 创建此虚拟目录的URL
  3. 捕获用户单击的URL(以进行重定向)

使用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"
}

0 个答案:

没有答案