How to 301 redirect sub domain post URL to root domain

The Webmasters’ StackExchange has a solution that sounds perfect for you.

Below, I have adapted it to your specific request. Hope this helps!

Options +FollowSymLinks 
RewriteEngine on
RewriteCond %{HTTP_HOST} !^(www)\. [NC]
RewriteCond %{HTTP_HOST} ^blog\.aisee\.co\.in [NC]
RewriteRule (.*) http://aisee.co.in/scholarship/%1 [R=301,L]