【发布时间】:2021-02-25 21:34:15
【问题描述】:
我创建了自己的 cms,但发现以下问题。页面链接显示如下:
https://www.example.com/page/contact-us
我希望它们显示为这样,通过删除 page 别名:
https://www.example.com/contact-us
我的 Htaccess:
选项 - 多视图 重写引擎开启 RewriteRule ^page/([\s\S]*)$ single-page.php?slug=$1 [L]我试过了,但对我不起作用
重写引擎开启 重写规则 ^([^/]*)$ /page/single-page.php?slug=$1 [L]【问题讨论】:
标签: php apache .htaccess mod-rewrite