如何更改
/profile?user=user
至
profile/user
.htaccess
或其他什么东西有效吗
这就是我目前所尝试的:
RewriteRule ^([A-Za-z0-9-]+)/?$ /profile/$1 [L]
我认为您可能会像前面所说的那样,将URL重写与.htaccess文件一起使用。
RewriteEngine on
RewriteRule ^profile/([A-Za-z0-9-]+)/?$ profile?user=$1 [L]