[Tex/LaTex] Long URLs in bibliography

bibliographiesurls

I am having an issue with a url in the bibliography. I have some guesses what could be wrong, but none of the options I thought of helped so far. I am in need of professional help! As always, appreciated.

\documentclass[a4paper,11pt,twoside]{article}
\begin{document}
\cite{mcds}
\begin{thebibliography}{9}
\bibitem{mcds}
https://www.researchgate.net/publication/301771443\_MULTIPLE\_CRITERIA\_DECISION\_SUPPORT\_OF\_BUILDING\_LIFE\_CYCLE
\end{thebibliography}
\clearpage
\end{document}

It produces this error and obviously goes a lot over margins.
enter image description here

Shortening URL is not an option.

Best Answer

Load url and use the eponymous command, and don't "escape" the _ (underscore) symbols, i.e., don't input them as \_ inside the URL string.

\documentclass[a4paper,11pt,twoside]{article}
\usepackage{inconsolata}
 \usepackage{url}
\Urlmuskip = 0mu plus 1mu

\begin{document}

See \cite{mcds}

\begin{thebibliography}{9}
\bibitem{mcds}
\url{https://www.researchgate.net/publication/301771443_MULTIPLE_CRITERIA_DECISION_SUPPORT_OF_BUILDING_LIFE_CYCLE}
\end{thebibliography}

\end{document} 

enter image description here