我正在建立一个modular
网站,我想建立一个文件夹供人们放置自己的插件,其结构为:
htdocs
└plugins
└notes
├ createnote.php
├ deletenote.php
├ editnote.php
└ viewnote.php
我想从URL中删除plugins
。
因此,我希望URL不再是https://example.com/plugins/notes/createnote.php
读为https://example.com/notes/createnote.php
。
我尝试使用introduction to url rewriting来帮助我,但我并不完全理解。
编辑: 我找到了解决方法Here!