如何获得seo友好网址

时间:2016-01-26 08:38:25

标签: php wordpress .htaccess

我目前正在使用CMS,我的网址目前看起来像这样 example.com/index.php?p=1 我该如何制作它以便每个帖子都是 p 有一个像WordPress一样的页面网址,它会成为标题。

$ArticleName = "Some Example Post";

输出网址应如下所示 example.com/some-example-post.php

1 个答案:

答案 0 :(得分:3)

未经测试,但也许是这样的。

RewriteEngine On
RewriteBase /

RewriteRule ^([a-zA-Z0-9_-]+)\.php$ /index.php?p=$1 [NC,L]