如何使用htaccess将我的用户个人资料网址转换为子域名

时间:2017-02-14 14:21:46

标签: php .htaccess mod-rewrite nginx

如何将用户个人资料网址转换为子域名 用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=mohamedhttp://mohamed.iemg.net

1 个答案:

答案 0 :(得分:0)

首先,您必须捕获域的用户部分,然后在替换中使用它

RewriteCond %{HTTP_HOST} ^(.*)\.iemg\.net$ [NC]
RewriteRule ^ http://iemg.net/usersprofile.php?username=%1 [R,L]

如果一切正常,您可以将R替换为R=301从不使用R=301进行测试。