Redirection and Forwarding

From ReduxWiki

Jump to: navigation, search

Contents

[edit] cPanel

cPanel => Redirects => Add!

Image:redirect-add.png


Addon/Sub Domains

Image:redirect-additional.png


[edit] Manually

Redirects may also be achieved by making use of an .htaccess file within your home directory.

Without www => www

RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.com$
RewriteRule ^/?$ http://www.domain.com [R=301,L]


With www => Without www

RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.domain.com$
RewriteRule ^/?$ http://domain.com [R=301,L]

[edit] Verification


Image:Tip.png Back to How To Documents
Personal tools