My world news II site, is calling the template using always absolute URLs this is causing loading issues in my server, look at my source:
- Code: Select all
<title>Meganoticias - Portada</title>
<link href="/?format=feed&type=rss" rel="alternate" type="application/rss+xml" title="RSS 2.0" />
<link href="/?format=feed&type=atom" rel="alternate" type="application/atom+xml" title="Atom 1.0" />
<link href="http://meganoticias.mx/images/logos/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<link href="/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<link href="http://meganoticias.mx/component/search/?format=opensearch" rel="search" title="Buscar Meganoticias" type="application/opensearchdescription+xml" />
<link rel="stylesheet" href="/media/system/css/modal.css" type="text/css" />
<link rel="stylesheet" href="/templates/gk_twn2/css/k2.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/menu.gkmenu.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/reset/meyer.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/layout.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/joomla.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/template.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/menu.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/gk.stuff.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/k2.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/typography.style2.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/typography.iconset.1.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/typography.iconset.2.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/typography.iconset.3.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/templates/gk_twn2/css/style2.css" type="text/css" />
<link rel="stylesheet" href="/modules/mod_tweetdisplayback/media/css/nostyle.css" type="text/css" />
<link rel="stylesheet" href="http://meganoticias.mx/modules/mod_news_pro_gk4/interface/css/style.portal.mode.1.css" type="text/css" />
<link rel="stylesheet" href="/plugins/content/arisexylightboxlite/arisexylightboxlite/js/sexylightbox.css" type="text/css" />
How can I have this: absolutes "http://meganoticias.mx/templates/" become relatives "/templates/"?
Appache is having trouble resolving so many internal requests...
Thanks