Forum Moderators: phranque
I'm trying to use mod rewrite to achieve the following:
FROM: [domain.com...]
TO: [domain.com...]
I've already written some code, but not quite sure if this is correct.
RewriteEngine On
RewriteRule ^/dir/([0-9]+)\/index.php
[domain.com...] [L]
Am I on the right track?
Cheers :o)
RewriteEngine On
RewriteRule ^dir/([0-9]+)/index\.php /page.php?id=$1
;)