All of the problem was caused by no .htaccess file. Put this in the Root where the wp-config.php is and you should be right to go it works fine for me maybe this might help someone else.
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .
/index.php [L]
</IfModule>
# END WordPress
=======