htaccess重命名中的RewriteRule

时间:2015-01-19 22:49:15

标签: php .htaccess

大家好我想做的,该用户进入目录:

  

www.myweb.com/invites/User

它可以作为

  

www.myweb.com/invites/index.php?u=User

我尝试了一些东西,但是没有用。

1 个答案:

答案 0 :(得分:0)

在文件夹invites中,创建一个.htaccess文件或使用apache重写:http://httpd.apache.org/docs/current/mod/mod_rewrite.html

规则是:

RewriteEngine On
RewriteRule ^(\w+)$ index.php?u=$1