使用htaccess更改文件名?

时间:2017-03-01 06:43:22

标签: php .htaccess

我之前已经做过,但忘记了我是怎么做到的,但是我记得之前我用htaccess把它做到了而不是说http://website.com/Profile.php?name=myusername

它会说 http://www.website.com/Profile/myusername

任何人都知道该怎么做?

1 个答案:

答案 0 :(得分:2)

在.htaccess文件中使用以下内容

RewriteEngine on
RewriteRule ^([A-Za-z]+)$ /Profile.php?name=$1