.htaccess redirect - Is it secure?
- by thecrandallster
This works; I'm not having trouble, but I want to be certain that this is bulletproof.
I came up with a neat little .htaccess redirect, but I am not sure if it is secure; do you know?
<IfModule mod_rewrite.c
RewriteEngine On
RewriteRule ^goto/([a-z]+)/?$ /$1/ [R]
</IfModule
I think as long…