.htaccess子域重写url

时间:2016-12-10 01:09:11

标签: php apache .htaccess mod-rewrite

我有一个使用通配符进行子域的系统。但是,我无法做.htacess部分。我想做这样的事情;

The url : http://something.example.com/

我可以得到#34;"部分,但主要问题是邮政网址。我想要求这个网址:

The url : http://something.example.com/homepage

获取"主页"部分,将参数设置为此URL:

The url : http://example.com/company/index.php?username=%1&page=$1

我的.htaccess文件:

RewriteCond %{HTTP_HOST} ^(.*)\.example\.com
RewriteRule ^/?$ /company/index.php?username=%1 [L]

实际上,整个系统将在/ company文件夹下工作。我应该采取什么策略?

0 个答案:

没有答案