To redirect all pages of a old web site to a main page of new web site, we can work with mod_rewrite on apache web server as the following.
RewriteEngine on
RewriteRule ^.*$ http://www.newwebsite.com/ [R=301,L]
Or, we can modify above RewriteRule as the following, users will be redirected to same path on new web site.
RewriteEngine on
RewriteRule ^.*$ http://www.newwebsite.com/$1 [R=301,L]