A post can be closed,got the solution.Probably not the best one but it works,just added if condition and converted the to url:
<dl class="dl-horizontal dl-invert">
<% document_show_fields(document).each do |solr_fname, field| -%>
<% if should_render_show_field? document, field %>
<dt class="blacklight-<%= solr_fname.parameterize %>">
<%= render_document_show_field_label document, :field => solr_fname %>
</dt>
<dd class="blacklight-<%= solr_fname.parameterize %>">
<% if solr_fname=='url' %>
<a href=<%= render_document_show_field_value document,:field => solr_fname %> >URL </a>
<% else %>
<%= render_document_show_field_value document,:field => solr_fname %>
<% end %>