-1

我正在为自己的婚礼开发一个婚礼网站,我有一些朋友想要使用它。

我只是在域之后匹配用户名的模式,如下所示:

http://example.com/username => route to controler/index/username

http://example.com/username2 => route to controler/index/username2

等等...

现在我想这样做:

www.username.com => route to controler/index/username

www.username2.com => route to controler/index/username2

但我想同时持有这两种方法。

4

2 回答 2

0

你不能在 CI 中解决这个问题。它需要使用 apaches 域重写,因为这将格式化正确的重定向

<VirtualHost *>
  ServerName www.example.com
  Redirect 301 / http://example.com/username
</VirtualHost>
于 2013-02-17T18:04:13.810 回答
-2

你可以使用

   <meta http-equiv="refresh" content="1;url=<?php echo $adr; ?>">

并使用$_SERVER获取当前地址。(例如“用户名”并重定向到http://www.username.com。)

于 2013-01-04T19:04:29.423 回答