Which redirect rule would I use to redirect all pages under olddomain.example
to be redirected to newdomain.example
?
The site has a totally
Use conditional redirects with Options -FollowSymLinks
and AllowOverride -Options
disabled by the Hoster if a few local files should be served too:
Sample .htaccess
# Redirect everything except index.html to http://foo
Redirect 301 / http://foo/
This example will serve local index.html and redirects all other staff to new domain.