How was a URL like http://stackoverflow.com/posts/1807421/edit created in PHP?

后端 未结 8 909
暖寄归人
暖寄归人 2021-01-23 06:10

When you edit a question on stackoverflow.com, you will be redirected to a URL like this:

https://stackoverflow.com/posts/1807421/edit

8条回答
  •  盖世英雄少女心
    2021-01-23 06:53

    As @mr-euro stated you can use mod_rewrite but front controller is a far better solution. You force every request to index.php and you write your application controlling in index.php.

提交回复
热议问题