.htaccess - www и ЧПУ

Maxchen

Новичок
Всем привет!

"Застрял" я с траблом ЧПУ и отображением www к домену.

при запросе страницы http://site.com/services/2/ (без www!) перенаправляет на http://www.site.com/?page=2

Вот как бы избежать появления этого запроса /?page=2 ?
Пробовал разные приемы с редиректами - ничего не помогает :( Помогите с решением, плизз!

файлик .htaccess ниже:
Код:
<Files ".htaccess">
deny from all
</Files>

Options -Indexes

Options +FollowSymlinks
RewriteEngine on
RewriteBase /

RewriteRule ^services/([0-9_]+)/? ?page=$1 [QSA,L]
RewriteRule ^article/([0-9_]+)/? article.php?artic=$1 [QSA,L]
RewriteRule ^contact/? contact-form.php [QSA,L]
RewriteRule ^sitemap.xml? sitemap.php [QSA,L]

RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) http://www.site.com/$1 [R=301,L]

RewriteCond %{THE_REQUEST} !\/js/
RewriteCond %{THE_REQUEST} !\/img/
RewriteCond %{THE_REQUEST} !\/images/
RewriteCond %{THE_REQUEST} !style\.css
RewriteCond %{THE_REQUEST} !style_user\.css
RewriteCond %{THE_REQUEST} !auth\.php
RewriteCond %{THE_REQUEST} !article\.php
RewriteCond %{THE_REQUEST} !articles\.php
RewriteCond %{THE_REQUEST} !settings\.php
RewriteCond %{THE_REQUEST} !login\.php
RewriteCond %{THE_REQUEST} !register\.php
RewriteCond %{THE_REQUEST} !activation\.php
RewriteCond %{THE_REQUEST} !password\.php
RewriteCond %{THE_REQUEST} !exit\.php
RewriteCond %{THE_REQUEST} !media\.php
RewriteCond %{THE_REQUEST} !sitemap\.xml
RewriteRule ^(.*)$ _ind___.php [L]
Благодарен за любую подсказку!
 
Сверху