Thanks,’hotdiggity’.
I had another question. This is what I currently have in my .htaccess. I am a newbie, and I am sure it is a mess.
How do I get the "index.php?q=$1" not to show in the browser’s URL bar??
Thanks in advance.
# For unexpected logouts in multi-server/cloud environments see:
#
http://svn.modxcms.com/docs/display/MODx096/Friendly+URL+Solutions
<IfModule mod_security.c>
# Turn the filtering engine Off
SecFilterEngine Off
</IfModule>
php_flag register_globals off
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
# Rewrite www.domain.com -> domain.com -- used with SEO Strict URLs plugin
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^MYDOMAIN.se [NC]
RewriteRule (.*)
http://MYDOMAIN.se/$1 [R=301,L]