将URL重写为更短

时间:2014-05-21 00:51:20

标签: .htaccess url rewrite

目前,当您访问谁的个人资料时,我的网站会这样做:

  ?

的index.php一个=简档&安培; U = berdyev

我想让它看起来像:

  

website.com/berdyev

有什么建议吗?

谢谢。

1 个答案:

答案 0 :(得分:1)

将它放在根目录中.htaccess:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/?$ /index.php?a=profile&u=$1 [L,QSA]