Removed and Reinstalled WordPress, Redirect Broken now

change this line in your index.php on root from require(‘./wordpress/wp-blog-header.php’); to require(‘./wdps/wp-blog-header.php’); then make an .htaccess file on root like this: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wdps/ RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wdps/index.php [L] </IfModule> # END WordPress

WordPress Permission Problems on Ubuntu 12.04 with LAMP stack

I believe the “lamp-server” package in Ubuntu fails to install mod-suphp, which would likely solve most of your permission problems. Try installing the libapache2-mod-suphp package. And undo everything you did with the permissions. The WordPress install should not be owned by the apache user, it should be owned by the real user.