Hello, please help, I'd like such redirection in htaccess file http://192.192.192.192/somedir/somepage.html -> http://domain.com/somedir/somepage.html http://192.192.192.192/somepage.html -> http://domain.com/somepage.html i.e. http://192.192.192.192/* redirects to http://topmost.us/* Any ideas on how to make that? Regards, Dy
hello use this rules in .htaccess RewriteEngine on RewriteCond %{HTTP_HOST} !^www.topmost.us$ RewriteRule ^(.*)$ http://www.topmost.us/$1 [R=301] all requests are redirected . best