标签: apache .htaccess mod-rewrite redirect web
嗨,我想知道我会在我的.htaccess中写些什么来做以下事情。
我想:
profile.php?profile=X9H6W6
重定向到:
/profile/X9H6W6/
不太清楚如何做到这一点。
答案 0 :(得分:2)
您可以在DocumentRoot/.htaccess:
DocumentRoot/.htaccess
RewriteEngine On RewriteRule ^profile/([^/]+)/?$ /profile.php?profile=$1 [L,QSA]