输入顶给域名xxx.com跳转到www.xxx.com的.htaccess应该怎么写呢,之前有Rewrite的规则,应该怎么加呢
<IfModule mod_rewrite.c>
Options +FollowSymli
nks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>