My question is how can I redirect a user to a domain if he uses an IP instead of the domain.
The website I’m asking about is on a LAMP server. I don’t know if it matters, but it uses a virtual host.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi @Dantcho,
You can achieve this with a rewrite in an htaccess file in your website’s directory.
You will want to create an .htaccess file in that directory with the following (replacing the IP and domain with your own):
Kind regards, Kalin
Hello all,
Another way to go about the problem is to add the rule in your Apache configuration.
Create a new Virtual Host configuration file: Create a new configuration file for the server IP address in the
/etc/apache2/sites-available
directory:Configure the Virtual Host: Add the following configuration to the newly created file, replacing
your_domain.com
andyour_server_ip
with your domain and server IP address, respectively:This configuration sets up a Virtual Host for your server IP address and enables the
mod_rewrite
module to redirect all requests made to the server IP to your domain.Enable the Virtual Host: Enable the new Virtual Host configuration and restart Apache:
Check your existing Virtual Hosts: Make sure there are no conflicting Virtual Host configurations that could be causing issues. The default Virtual Host configuration in Apache is usually named
000-default.conf
. If this file is enabled, disable it with the following command and restart Apache:After completing these steps, all requests made to your server IP should be redirected to your domain name.
Good Morning,
I am having a similar problem, I need to direct my server by IP/phpmyadmin, as in the example:
https://myip/phpmyadmin dedirect to https://mysite.com/phpmyadmin
RewriteCond %{HTTP_HOST} ^XXX.XX.XXX.XXX$ (my ip) RewriteRule ^(.*)$ https://mysite.com/$1 [L,R=301]
I was only able to with the above rules direct my IP to mysite.