Quote Originally Posted by kamelion0927 View Post
...It also added a non-included line next to a rewrite rule

RewriteCond %{REQUEST_URI} ^/shop/ [NC]# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])

which also gave me an error (but google was kind enough to help me figure out what the problem was).

Any help would be extremely appreciated. Thanks in advance!
Sorry - I didn't add the fix to one of the issues in my last post and wanted to document it in case someone else needs it.

If you're getting a bad rewrite request error, make sure all not-included rewrite rules are on their own line. So to fix the problem above, make it look like this:

RewriteCond %{REQUEST_URI} ^/shop/ [NC]
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])