我想知道如何使用.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。
针对此问题的任何解决方案?
答案 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]