Hi Wotan2525,
There are a couple of things you can try:
Try to put a forward slash before the second part of the Rewrite rule to get:
RewriteEngine on
RewriteRule ^option/([A-Za-z]+)/Itemid/([0-9])/$ /index.php?option=$1&Itemid=$2
Also, the Regular expressions look good, but you could try using (.*) instead foro both of them to see if it is parsing it incorrectly.
If nothing else works, it may be the httpd.conf file. If you have access to .htaccess, then you most likely have access to the httpd.conf file.
Hopefully, one of these will work. I'm not an expert on mod-rewrite... just saying what I know
|