使用.htaccess从具有查询字符串变量的url中删除php扩展

时间:2015-01-26 19:58:16

标签: php .htaccess url-rewriting

我有一个网址:

http://exploreinfo/controller/register.php?key=hjgsaf1

我想要的网址如下:

http://exploreinfo/controller/register/?key=hjgsaf1

如何使用php

中的.htaccess删除上述格式的php

1 个答案:

答案 0 :(得分:0)

创建.htaccess文件或使用apache重写:http://httpd.apache.org/docs/current/mod/mod_rewrite.html

规则是:

RewriteEngine On
RewriteRule ^register/$ register.php [QSA]