How can I make that when typing a domain without www. ahead for example http://test.ru/ he changed to http://www.test.ru/ that is, www.
2 answers
Register in .htaccess:
RewriteEngine On RewriteCond %{HTTP_HOST} ^example.com RewriteRule (.*) http://www.example.com/$1 [R=301,L]
domain is yours.
|
Redirect on the server side, of course. Following!
- Is it possible to somehow in .htaccess? - sergeivisotsky
- oneYou can, see a more detailed answer from above. - VladD 2:41 pm
|