I need help to set up my .htaccess so it works with two different conditions.
The first condition is :
RewriteEngine on
RewriteCond %{request_filename} -f
RewriteRule ^(.*) $1 [L]
RewriteRule ^(([^/]*)+)(/([^/]{0,32})(/.+)?)?$ index.php?a=$1&q=$3 [L]
I want to add a condition that rewrites non-www to www
How do I force www. on my site?
I want to force www through htaccess, but I don't how to to this.