mod_rewrite
Posted by: zweismith
Posted on: 2005-03-31 23:24:00
Hi all,
Is mod_rewrite supported at the site level on DH? If so, maybe I'm not doing things right. If not, then I need another solution.
I want the following URL:
http://mydomain.com/hello/world/
to resolve to...
http://mydomain.com/script.php?hello=world
"world" in the above example might be any arbitrary string.
I added the following to my .htaccess file in my site's root dir, but no success (404 error):
RewriteEngine On
RewriteRule ^/hello/(.*) /script.php?hello=$1
Thanks in advance for helping out an apache novice!
-Dave