Kohana htaccess — редирект с www
Здравствуйте!
Есть сайт сделанный на kohana, вот его htaccess:
/** * GeSHi (C) 2004 - 2007 Nigel McNie, 2007 - 2008 Benny Baumann * (http://qbnz.com/highlighter/ and http://geshi.org/) */ .apache.geshi_code {font-family:monospace;} .apache.geshi_code .imp {font-weight: bold; color: red;} .apache.geshi_code .kw1 {color: #00007f;} .apache.geshi_code .kw2 {color: #0000ff;} .apache.geshi_code .kw3 {color: #000000; font-weight:bold;} .apache.geshi_code .co1 {color: #adadad; font-style: italic;} .apache.geshi_code .es0 {color: #000099; font-weight: bold;} .apache.geshi_code .st0 {color: #7f007f;} .apache.geshi_code .nu0 {color: #ff0000;} .apache.geshi_code span.xtra { display:block; }
Подскажите, как сделать редирект с www.site.ru на site.ru, т.е. если даже внутри сайта ссылки ведут на www.site.ru, то перенаправлять их на site.ru?
Есть сайт сделанный на kohana, вот его htaccess:
/** * GeSHi (C) 2004 - 2007 Nigel McNie, 2007 - 2008 Benny Baumann * (http://qbnz.com/highlighter/ and http://geshi.org/) */ .apache.geshi_code {font-family:monospace;} .apache.geshi_code .imp {font-weight: bold; color: red;} .apache.geshi_code .kw1 {color: #00007f;} .apache.geshi_code .kw2 {color: #0000ff;} .apache.geshi_code .kw3 {color: #000000; font-weight:bold;} .apache.geshi_code .co1 {color: #adadad; font-style: italic;} .apache.geshi_code .es0 {color: #000099; font-weight: bold;} .apache.geshi_code .st0 {color: #7f007f;} .apache.geshi_code .nu0 {color: #ff0000;} .apache.geshi_code span.xtra { display:block; }
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
RewriteEngine On
# Installation directory
RewriteBase /
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
Подскажите, как сделать редирект с www.site.ru на site.ru, т.е. если даже внутри сайта ссылки ведут на www.site.ru, то перенаправлять их на site.ru?