Forum Moderators: phranque
unable to edit the .htaccess file.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} example\.hosting\.org [NC]
RewriteRule (.*) http://example.net/$1 [R=301,L]
</IfModule> [edited by: phranque at 4:43 am (utc) on May 29, 2014]
[edit reason] exemplified hostnames [/edit]
Thankfully a guy suggested me this -
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} example\.hosting\.org [NC]
RewriteRule (.*) http://example.net/$1 [R=301,L]
</IfModule>
RewriteCond %{HTTP_HOST} !^(example\.net)?$ [NC]
RewriteRule (.*) http://example.net/$1 [R=301,L]