php - Redirect files from on server to another server -
i need redirect files 1 server server
forexample
www.example.com/file.php www.example2.com/files/file.php
redirectpermanent /file.php http://example2.com/files/file.php works great. how can redirect multiple files it?
thanks help!
to redirect multiple files 1 server server, need use redirectmatch directive regex pattern.
try in example1.com/.htaccess :
redirectmatch 301 ^/(.*)$ http://example2.com/files/$1
Comments
Post a Comment