使用.htaccess进行域重定向

时间:2014-05-06 19:29:58

标签: regex apache .htaccess mod-rewrite

我想知道如何使用.htaccess重定向链接。

一个域将http://domain.com链接到index.html,将另一个http://www.domain.com链接到/wp/index.php。

当有人在浏览器中输入www.my-domain.com时。我想用www的域名。重定向到一个文件,例如/unique/one.php。如果有人在没有 www的情况下键入my-domain.com ,那么应该重定向到我目录中的另一个文件,例如/another/index.php。

针对此问题的任何解决方案?

1 个答案:

答案 0 :(得分:1)

将此代码放入DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC]
RewriteRule ^/?$ /wp/index.php [L]

RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^/?$ /index.html [L]