I need some help on how to write a .htaccess
I have already done below to rewrite my filename, and now I want to rewrite my domain xxxx.com to http://www.xxxx.com , but I don't know how to write, who can show me the code pl.? thanks very much.
<backticks>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond % {REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressw
</backticks>