stackoverflow community. I removed site.com/index.php dublicate and i did add www, so it looks www.site.com and works pretty fine. After all this manipulations i faced a problem - if i go to my website from google search which is showing non-www version, i got redirected to www version, but i got /?/ in the middle of ulr, like site.com/?/reviews/acticle/3 ...thou it worked and opened article. However i managed somehow to get rid of /?/ and all working fine right now, but my question is: if i go site.com/index.php it redirects me to the home page if i go direct by typing it in f.e. site.com/index.php/reviews/article/3 it still works. So, is it bad sign that it still works and doesnt redirect me? I cant access it any other way, f.e. from google search, except typing it by myself. Here is my htaccess file, i hope it isnt look like a too big mess:
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond %{HTTP_HOST} ^site.info$
RewriteRule (.*) http://www.site.info/$1 [R=301,L]
RewriteCond $1 !^(index.php|images|upload|robots.txt|css)
RewriteCond %{REQUEST_URI} !.(css¦js¦jpg¦gif)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L,QSA]
RewriteCond %{THE_REQUEST} ^.*/index.php
RewriteRule ^(.*)index.php$ http://www.site.info/$1 [R=301,L]
AddDefaultCharset UTF-8
Thanks in advance!