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

Popular posts from this blog

android - Pass an Serializable object in AIDL -

How to provide Authorization & Authentication using Asp.net, C#? -

How to use Authorization & Authentication in Asp.net, C#? -