如何使用.htaccess很好地重写url

时间:2014-01-15 20:37:43

标签: apache .htaccess mod-rewrite redirect web

嗨,我想知道我会在我的.htaccess中写些什么来做以下事情。

我想:

profile.php?profile=X9H6W6

重定向到:

/profile/X9H6W6/

不太清楚如何做到这一点。

1 个答案:

答案 0 :(得分:2)

您可以在DocumentRoot/.htaccess

中使用此规则
RewriteEngine On
RewriteRule ^profile/([^/]+)/?$ /profile.php?profile=$1 [L,QSA]