7

I want that when people access my web server with the IP address, like http://10.0.0.1, be redirected to the domain name, like http://example.com. I'm using Apache Web Server and I've tried:

<VirtualHost 10.0.0.1:80>
    Redirect / http://example.com
</VirtualHost>

which generated an infinite redirect loop because it has higher priority than

<VirtualHost *:80>
    ServerName example.com
    ...
</VirtualHost>

which is the virtual host I ultimately want to serve.

I've also tried

<VirtualHost 10.0.0.1:80>
    ServerName 10.0.0.1
    Redirect / http://example.com
</VirtualHost>

thinking that maybe it'll only match http://10.0.0.1 but not http://example.com. But it also generates an infinite loop. Any ideas how to achieve that?

The reason why the IP virtual host is not the main and only virtual host is because I want other IPs on the server to also be able to serve example.com.

MrWhite
  • 12,647
  • 4
  • 29
  • 41
Pablo Fernandez
  • 7,438
  • 25
  • 71
  • 83
  • 3
    What about your NameVirtualHost setting ? – radius Jul 22 '09 at 05:23
  • 2
    You should be able to do this using name-based Virtual Hosts (default on Apache 2.4+). See this more recent ServerFault question: https://serverfault.com/questions/914649/htaccess-block-access-when-http-host-is-ip-security – MrWhite Jun 14 '18 at 21:44

3 Answers3

6

HD answered gave a good rewrite rule, but you should put a condition before that. Make sure that there is only one virtual host running on 10.10.10.1 and have your definition look like the following:

<VirtualHost 10.0.0.1:80>
    ServerName servername.com
    .....

    RewriteCond %{SERVER_NAME} 10.10.10.1
    RewriteRule /(.*) http://servername.com/$1 [R=301,L]

</VirtualHost>

This way, you only need one virtual host for that IP address instead of what you were trying to do above. NOTE: If you're going to have more than one virtual host on this server, you need to put the rest on different IP(s)

goose
  • 151
  • 7
  • 2
    Shouldn't the rewrite condition try to match the virtual host ip, like 10.0.0.1 instead of 10.10.10.1? Why would other virtual hosts need to run in different IPs? Won't they match by name instead of IP? – Pablo Fernandez Aug 05 '10 at 08:30
  • In my case it was also neccessary to add `RewriteEngine On` before the RewriteCond line. – lanoxx May 08 '12 at 20:36
  • (Where did `10.10.10.1` come from?) In a VirtualHost context, that is accepting requests to a specific IP address, there is no need to check the IP address in the mod_rewrite directive. (But you should probably be checking `HTTP_HOST` rather than `SERVER_NAME` - which is dependent on the server config.) But checking for the IP address in the `Host:` header won't catch HTTP/1.0 requests (which don't include the `Host:` header). – MrWhite Jun 14 '18 at 21:56
  • what about ipv6 condition? – MaXi32 Jan 04 '20 at 19:06
1

I try the same configuration and it works fine. Are you sure there is no other definition that conflicts with your virtual hosts? What is the error in the apache logs?

This rule also works:

RewriteRule ^(.*)$ http://example.com/$1 [R=301,NC]
hdanniel
  • 4,293
  • 23
  • 25
  • Minor point, but if this is in a virtualhost context, as suggested by the question, then you should either include a slash prefix on the `RewriteRule` _pattern_ (ie. `^/(.*)`) or omit the slash at the start of the URL-path in the _substitution_. Otherwise, you'll get a double-slash in redirected URL. – MrWhite Jun 14 '18 at 22:03
0

In .htaccess add the following:

RewriteCond %{HTTP_HOST} ^123\.123\.123\.123
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
MrWhite
  • 12,647
  • 4
  • 29
  • 41
S Lewis
  • 11