Disable Redirects in Extended Search

Describe the issue / Steps to reproduce:
I want to remove redirects from being shown in the Search Center

Expected behavior:
The search Center should only have pages

Hello and welcome to the BlueSpice community forums!

Unfortunately there is no option to exclude redirect pages from the search results page as far as I know.

Luckily, each redirect-result is marked as such in its style class.
In MediaWiki:Common.css, you can add the following to hide redirect results:

.bs-extendedsearch-result-container.redirect {
    display: none; 
}

Tried it and it worked for me.