如何更改网址,例如http://mysite.com/forum/forum.php?id=1
和http://forum.mysite.com/forum.php?id=1
答案 0 :(得分:5)
您希望/forum/foo
为/foo
吗?如果是,那么在.htaccess中使用此代码:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteRule ^forum/(.+)$ $1 [L,NC,R]