How to implement 301 permanent redirection in Apache?
How to implement 301 permanent redirection in Apache?
It can be set in the .htaccess file.
Reference code:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^cnop.net$
RewriteRule ^(.*)$ http://www.domain.net/ $1 [R=301,L]