|
to redirect to a page:
RewriteEngine on
RewriteCond %{HTTP_HOST} *\.edu
RewriteRule ^(.*)$ http://www.yourdomain.com/404.html$1 [R,L]
to just drop the request:
RewriteEngine on
RewriteCond %{HTTP_HOST} *\.edu
RewriteRule ^(.*)$ - [L]
"should" work. You may need to tweak the RewriteCond string match.
|