Re-add old blog posts from Astro
This commit is contained in:
parent
076239fa25
commit
051e154c65
178 changed files with 13479 additions and 7 deletions
|
@ -0,0 +1,29 @@
|
|||
---
|
||||
title: Forward one domain to another using mod_rewrite and .htaccess
|
||||
date: 2012-05-23
|
||||
excerpt: How to use the .htaccess file to forward to a different domain.
|
||||
tags:
|
||||
- .htaccess
|
||||
- apache
|
||||
- code
|
||||
- drupal
|
||||
- mod_rewrite
|
||||
---
|
||||
|
||||
How to use the .htaccess file to forward to a different domain.
|
||||
|
||||
Within the mod_rewrite section of your .htaccess file, add the following lines:
|
||||
|
||||
RewriteCond %{HTTP_HOST} ^yoursite\.co\.uk$
|
||||
RewriteRule (.*) http://yoursite.com/$1 [R=301,L]
|
||||
|
||||
This automatically forwards any users from http://yoursite.co.uk to
|
||||
http://yoursite.com. This can also be used to forward multiple domains:
|
||||
|
||||
RewriteCond %{HTTP_HOST} ^yoursite\.co\.uk$ [OR]
|
||||
RewriteCond %{HTTP_HOST} ^yoursite\.info$ [OR]
|
||||
RewriteCond %{HTTP_HOST} ^yoursite\.biz$ [OR]
|
||||
RewriteCond %{HTTP_HOST} ^yoursite\.eu$
|
||||
RewriteRule (.*) http://yoursite.com/$1 [R=301,L]
|
||||
|
||||
If any of the RewriteCond conditions apply, then the RewriteRule is executed.
|
Loading…
Add table
Add a link
Reference in a new issue