我有domain.com/profile.php?id=username
之类的网址,我想将其重写为domain.com/profile/username
。有人可以帮我吗?我已经尝试重写它了.htaccess,它没有用。
答案 0 :(得分:1)
您可以在DOCUMENT_ROOT/.htaccess
文件中使用此代码:
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ^profile/(\w+)/?$ profile.php?id=$1 [L,QSA,NC]