使用.htaccess更改PHP URL

时间:2014-02-15 13:46:47

标签: php regex .htaccess

我一直坚持这个。为了将localhost / article.php?id = bryan更改为localhost / article / bryan甚至localhost / bryan whatexact .htaccess代码我应该使用吗?

谢谢大家,非常感谢所有的帮助!

1 个答案:

答案 0 :(得分:2)

您可以使用:

RewriteEngine On
RewriteRule ^article/([^/]*)$ /article.php?id=$1 [L]

这会将localhost/article.php?id=bryan重新写入http://localhost/article/bryan

或者您可以使用:

RewriteEngine On
RewriteRule ^([^/]*)$ /article.php?id=$1 [L]

这会将localhost/article.php?id=bryan重新写入http://localhost/bryan