Redirect wordpress website’s subpage to root [closed]

you have multiple options to achive this.

The easiest way is to use a redirection plugin like:

https://wordpress.org/plugins/redirection/

if you want to work without a additional plugin,
you can use .htaccess redirection like mentioned earlier:

RewriteEngine On
RewriteRule ^/?blog/(.*)$ /$1 [R=301,L]