• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn sửa lỗi base href trên google cache cho vbb

Admin

Well-Known Member
Staff member
Administrator
Các bạn mở headinclude template, tìm đoạn này
HTML:
<base href="{vb:raw basepath}" /><!--[if IE]></base><![endif]-->
Sau đó thêm ngay phía sau đoạn đó và save lại.

HTML:
<!--Start:  Fix Base Path IN Google Cache, Code by: Vũ Thanh Lai - SinhVienIT.Net -->
<script type="text/javascript">
<!--
	
	var curBaseTag = document.getElementsByTagName('base')[0], correctBasePath = "{vb:raw basepath}";
	if (typeof curBaseTag!='undefined' && curBaseTag!=null && curBaseTag.href != correctBasePath)
		curBaseTag.href = correctBasePath;
	if(correctBasePath=='')
	{
		curBaseTag.href=window.location.protocol+'//'+window.location.host+'/forum/'; 
		// Đoạn này thay forum bằng thư mục chứa code diễn đàn của bạn (hoặc bỏ đi cũng được)
	}
-->
</script>
<!--End:  Fix Base Path IN Google Cache, Code by: Vũ Thanh Lai - SinhVienIT.Net -->
Chúc các bạn thành công.
Nguồn: SVIT
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top