Batch file to cleanup unnecessary files ...

simple tool for clean up n free your disk from temporary and unusable files, it’s made by kebo_gila the ccpb idol n distribute to me by kabayan, coz few minutes ago i have no idea about tools for clean up the rest of uninstallation data, so i ask him about this n then he told me to use cc cleaner and also he gave this tool to me, the code would be like this:

@echo off
echo cleaning unnecessary files and folder in windows


(more…)

Force using www on website...

let say i want to force any people that visit this site to visit http://www.blindtext.info, not http://blindtext.info , there”s a very simple way.

use .htacces

copy this code on text editor, and save as .htacces

RewriteEngine on
RewriteCond %{HTTP_HOST} ^trevorfitzgerald.com [NC]
RewriteRule ^(.*)$ http://www.trevorfitzgerald.com/$1 [L,R=301]


will visit http://www.blindtext.info rather than http://blindtext.info

www seem much sweeter, isn’t see? :D

Redirect page silently with PHP script...

so simple :D

just copy this code in text editor like notepad and save as index.php

<?php
header( ‘Location: http://yourdestinationdomain.com’ ) ;
?>

place it on your webpages pages, delete index.html if exist, and your page will silently redirect to any url or page u want

Next Entries »