用.htaccess或其他东西替换URL


Replacing URLs with .htaccess or something else?

我看到一些网站用其他东西替换了原来的URL。示例:他们使用的不是http://url.com/profile/index.php?username=USERNAME而是http://url.com/profile/USERNAME

我该怎么做?

通过httpd.conf启用mod_rewrite和.htaccess,然后将此代码放在.htaccessDOCUMENT_ROOT目录下:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteRule ^(profile)/([^/.]+)/?$ /$1/index.php?username=$2 [L,QSA,NC]