子域的.htaccess URL重写 [英] .htaccess subdomain url rewrite

查看:201
本文介绍了子域的.htaccess URL重写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想重写一个URL,但我一直没有得到任何适当的结果。

I would like to rewrite an url, but I always do not get any adequate results.

我想网址 http://something.domain.com/index.php?arguments ... 实际访问 http://domain.com/index.php?username=something&arguments ......

I would like the url http://something.domain.com/index.php?arguments... to actually visit http://domain.com/index.php?username=something&arguments...

我曾尝试与做一个通配符项* .domain.com并使用互联网上的一些code,但毫无效果。

I have tried with making a wildcard entry *.domain.com and using some code on the internet, but nothing worked.

我不断收到一个默认网站页面 任何想法如何解决这个问题?

I keep getting a "Default Website Page" Any ideas how to solve this problem?

推荐答案

您可以在<$ C $你的 DOCUMENT_ROOT /的.htaccess 文件中使用此code C>的东西域名:

You can use this code in your DOCUMENT_ROOT/.htaccess file of something domain:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^([^.]+)\.(domain\.com)$ [NC]
RewriteRule ^(index\.php)$ http://%2/$1?username=%1 [L,QSA,NC,R]

这篇关于子域的.htaccess URL重写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆