Or, if it gives you a 500 error, replace 'SetHandler' with 'Forcetype'.
DonWilson
Mar 18 2005, 08:44 PM
There isn't a RewriteRule that'll take this out?
_
Mar 18 2005, 09:08 PM
There probably is. Something like... (in the root directory):
CODE
RewriteEngine On RewriteRule (^[a-zA-Z1-9]*?$) index.php?cmd=$1
DonWilson
Mar 18 2005, 11:27 PM
Would this allow me to do /forums?this=that&the=true and it turn into index.php?cmd=forums&this=that&the=true ?
_
Mar 19 2005, 11:47 AM
Should do, if my regexp isn't that bad. -- Also /hello?this=that making it /index.php?cmd=hello&this=that, as it sounded like you wanted a global rule.