.htaccess - Cannot 301 redirect this page to a specific page -
i want page:
http://mystore.com/login.aspx?returnurl=%2fpages%2fhome%2fuser%2fwish-list.aspx
to
so, try write 301 redirection rule this:
rewriterule ^login.aspx$ en/ukeurope/home? [r=301,l]
but when want try redirection. gives me 404 not found.
p.s. don't want 1
mystore.com/page/login.aspx
to redirected 301 redirection rule
enable mod_rewrite , .htaccess through httpd.conf
, put code in .htaccess
under document_root
directory:
options +followsymlinks -multiviews # turn mod_rewrite on rewriteengine on rewritebase / rewritecond %{the_request} ^[a-z]{3,}\s/+login\.aspx?returnurl=\%2fpages\%2fhome\%2fuser\%2fwish-list\.aspx [nc] rewriterule ^ /en/ukeurope/home? [r=302,l]
Comments
Post a Comment