Finally have moved my blog to a more users friendly domains (mylinux.net.my) , the old domains (fakq.net)
is not really suitable for a blog anyway :D, the best thing is wordpress make it easy for the move
, I just need to copy my old WP installation folder and then change the domain in the General Setting.
When done, I just need to install and run Velvet Blues Update URLs plugins to fix post URL and attachment Finished in less than 10 minutes! and with mod_rewrite I able to forward any request from the old urls to the new domain without a hassle!
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ https://mylinux.net.my/blog/$1 [R=301,L]
</ifmodule>
RewriteEngine On
RewriteRule ^(.*)$ https://mylinux.net.my/blog/$1 [R=301,L]
</ifmodule>