我目前正在使用CMS,我的网址目前看起来像这样 example.com/index.php?p=1 我该如何制作它以便每个帖子都是 p 有一个像WordPress一样的页面网址,它会成为标题。
$ArticleName = "Some Example Post";
输出网址应如下所示 example.com/some-example-post.php 。
答案 0 :(得分:3)
未经测试,但也许是这样的。
RewriteEngine On
RewriteBase /
RewriteRule ^([a-zA-Z0-9_-]+)\.php$ /index.php?p=$1 [NC,L]