如何将用户个人资料网址转换为子域名 用htaccess
我尝试在htaccess中使用此代码,但它不起作用
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(iemg\.net)$ [NC]
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
赞:http://iemg.net/usersprofile.php?username=mohamed至http://mohamed.iemg.net
答案 0 :(得分:0)
首先,您必须捕获域的用户部分,然后在替换中使用它
RewriteCond %{HTTP_HOST} ^(.*)\.iemg\.net$ [NC]
RewriteRule ^ http://iemg.net/usersprofile.php?username=%1 [R,L]
如果一切正常,您可以将R
替换为R=301
。 从不使用R=301
进行测试。