Forum Moderators: phranque
virtual host 80
Redirect 301 / [cool.com...]
Due to some requirement , i need one page to be served from xyz domain.. Is it possible without using mod_rewrite....
I mean .. i need this page served from www.xyz.com/page.html served and rest of the pages redirected to [cool.com...]
rewritecond %{HTTP_HOST} www.xyz.com [NC]
rewritecond %{request_URI}!^page.html$
RewriteRule ^(.*)$ [cool.html...] [R=301,L]