I use apacite to create a bibliography according to APA guidelines for my article. Some of the references contain URLs. By default, LaTeX shows these in a different, monospace font than the rest of the article. I dislike this, so wish to use the url package with \urlstyle{same}. This does not work however in combination with apacite.
Here is a little reference document.
\documentclass{article}
\usepackage{url}
\urlstyle{same}
\usepackage{apacite}
\begin{document}
\url{http://www.google.com}
\end{document}
Leaving out the apacite package will render the link in the document font. It will currently render in the monospace font however. Does anyone have a suggestion on how to fix this, so I can have APA references and good looking URLs?