Thread Starter
rcb75
(@rcb75)
I started fresh today and followed the instructions here precisely. This time it worked. I think my mistake was in modifying the htaccess file after copying it to the root, which was something I had read elsewhere but was not specified here. Just stick with the steps exactly as written.
Thread Starter
rcb75
(@rcb75)
Correction:
My htaccess file in #3 above was edited to look like this instead:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp/index.php [L]
</IfModule>
#END WordPress