Does anyone see anything wrong with this piece of code? RewriteRule ^layouts/(.*)$ index.php?app=myspacelayouts&action=get?id=$1 [L] What it basically should do is look in the layouts folder access the get.php file using my index.php template that is in another directory. Doesn't seem to be working right but i can't figure out whats wrong. Any help is appreciated.
I think you need to backspace your '/' character, so: RewriteRule ^layouts\/(.*)$ index.php?app=myspacelayouts&action=get?id=$1 [L] Also, maybe your need to backspace your '?' characters too (not sure about this).