Forum Moderators: phranque
[website.com...]
to
[website.com...]
and so that I could replicate that for other directories other than /news. From various bits I've done before I can get one directory working using:
RewriteRule ^([^/\.]+)/?$ /news/index.php?q=$1 [L]
But that stops at the first forward slash. So I figured I needed something to match everything:
RewriteRule ^(.*)$ /news/index.php?q=$1 [L]
All I get is 500 errors =/ Any help would be much appreciated.