Hi all,
I have a quick question about .htaccess. Why does my site load faster when using this URL:
http://www.phaidi.com/network/index.php?p=home&s=chaumyvn
Than by going straight to the chaumy.vn domain?
I think it has something to do with my .htaccess, but I have not been able to fix it. See my .htaccess file below:
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
ReWriteCond %{HTTP_HOST} chaumy.vn
ReWriteCond %{REQUEST_URI} !network/
ReWriteRule ^(.*)$ /network/index.php?p=$1&s=chaumyvn [R=301]
<Files .htaccess>
order allow,deny
deny from all
</Files>
Any ideas?