为php博客网站制作用户友好的网址

问题描述 投票:0回答:1

当前网址 = xyz.comabcblog-detail.php?id=1

想要的网址=xyz.comabcblog-detail1。

我已经在.htaceess中试过这段代码。

RewriteRule ^blog-detail/([0-9]+) blog-detail.php?id=$1 [NC,L]
php .htaccess blogs
1个回答
0
投票

最好的、最灵活的方式是实现路由器系统,你可以看看。https:/github.comskipperbentsimple-php-router。


0
投票

我使用以下代码解决了我的问题 .htaccess 文件。

RewriteRule ^([^\.]+)$ $1.php [NC,L]
© www.soinside.com 2019 - 2024. All rights reserved.