我现在想把 abc.com转换成www.abc.com
问题是我的.htaccess里面已经做过其它的转向,该怎么写这样
原来是这样的
rewriteengine on
rewritebase /
rewritecond %{request_filename} !-f
rewritecond %{request_filename} !-d
rewriterule ^(.*)$ /index.php?$1 [l]
errordocument 404 /index.php
------解决方案--------------------
rewritecond %{http_host} !^www\. [nc]
rewriterule ^(.*)$ http://www.%{http_host}/$1 [l,r=301]
