I need help with .htaccess
. I'm using apache.
I want to change my server IP to another one.
Example:
http://127.0.0.1/files/image.png
to
http://192.196.1.1/files/image.png
I need help with .htaccess
. I'm using apache.
I want to change my server IP to another one.
Example:
http://127.0.0.1/files/image.png
to
http://192.196.1.1/files/image.png
Could you please try following, written and tested with shown samples.
Please make sure to clear your browser cache before testing your URLs.
RewriteEngine ON
RewriteCond %{HTTP_HOST} 127\.0\.0\.1
RewriteRule ^ http://192.196.1.1%{REQUEST_URI} [R=301,NE,L]