вопрос
Хостинг nginx, нужно сделать 301 редирект на добавление www в домене, пробовал так:
пишет Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
кто знает решение?!
if ($host = ‘www.domain.com’ ) {
rewrite ^(.*)$ http://domain.com$1 permanent;
}
пишет Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
кто знает решение?!
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.ru
RewriteRule (.*) http://www.example.ru/$1 [R=301,L]