如何在 CakePhp 中更改项目名称 3.x

How to change the project name in CakePhp 3.x

我有这个名为“site01”的项目。

发布为:'www.example.com/site01'。页面是这样的 'www.example.com/site01/page/1'.

我可以将 url 路由到“www.example.com/site01/1”,但是我可以更改 url 到 'www.example.com/s/1' 通过路由配置?

最初我认为您必须使用.htaccess 方式,因为问题与CakePHP 文件夹外部有关。

你可以在上层文件夹新建一个名为.htaccess的文件,写入指令 redirect /site01/ to /s/.

重写示例代码 url:

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^site01.*$ /s/ [R=301,L]