Reformat docblocks

This commit is contained in:
Oliver Davies 2021-09-04 20:19:42 +01:00
parent 3df0a59767
commit 22b3000078

View file

@ -14,20 +14,16 @@ 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: Within the mod_rewrite section of your .htaccess file, add the following lines:
```language-apacheconf RewriteCond %{HTTP_HOST} ^yoursite\.co\.uk$
RewriteCond %{HTTP_HOST} ^yoursite\.co\.uk$ RewriteRule (.*) http://yoursite.com/$1 [R=301,L]
RewriteRule (.*) http://yoursite.com/$1 [R=301,L]
```
This automatically forwards any users from http://yoursite.co.uk to This automatically forwards any users from http://yoursite.co.uk to
http://yoursite.com. This can also be used to forward multiple domains: http://yoursite.com. This can also be used to forward multiple domains:
```language-apacheconf RewriteCond %{HTTP_HOST} ^yoursite\.co\.uk$ [OR]
RewriteCond %{HTTP_HOST} ^yoursite\.co\.uk$ [OR] RewriteCond %{HTTP_HOST} ^yoursite\.info$ [OR]
RewriteCond %{HTTP_HOST} ^yoursite\.info$ [OR] RewriteCond %{HTTP_HOST} ^yoursite\.biz$ [OR]
RewriteCond %{HTTP_HOST} ^yoursite\.biz$ [OR] RewriteCond %{HTTP_HOST} ^yoursite\.eu$
RewriteCond %{HTTP_HOST} ^yoursite\.eu$ RewriteRule (.*) http://yoursite.com/$1 [R=301,L]
RewriteRule (.*) http://yoursite.com/$1 [R=301,L]
```
If any of the RewriteCond conditions apply, then the RewriteRule is executed. If any of the RewriteCond conditions apply, then the RewriteRule is executed.