I need to redirect my old link(deleted) in my new link with a .htaccess file, for example,
From: http://www.example.com/page.php?value=2 (deleted)
To: http://www.example.com/detail.php?d=150
I tried with this but don't work. Becouse the file (page.php) does not exist, then the server give me 404 page not found.
My .htaccess
<Files ~ "^\.(htaccess|htpasswd)$">
deny from all
</Files>
RewriteEngine On
RewriteRule http://www.example.com/page.php?value=2 http://www.example.it/detail.php?d=150 [END,R=301]
order deny,allow
Can you help me?