How to use GRUB in WINDOWS environment

How to use GRUB in WINDOWS environment

There is a project in sourceforge.net called WINGRUB/GRUB4DOS. It is an extension of GRUB in DOS environment enables dos users to run configuration console in real mode. The project also has a utility called WINGRUB to help configuring and installing GRUB in the WINDOWS environment. Download location: https://sourceforge.net/projects/grub4dos How to…continue reading →

Useful .htaccess Rules

Redirecting old domain name to new domain name with the old page to new page. ? Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] Hiding .php extension by this rule. Entire .html page on your domain will be translate as .php page. Options +FollowSymLinks RewriteEngine on RewriteRule (.*).html$ $1.php Resolving…continue reading →