Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Change the link in a href string Reply To: Change the link in a href string

#239844
Senff
Participant

( topic moved to “Other discussions” )

To redirect, you should use 301 redirects in your .htaccess file.

Redirect 301 /old /new

Or, if that doesn’t work:

RewriteEngine On
RewriteRule ^/?old/(.*)$ /new/$1 [L,R=301]