htaccess problem: links don’t work after move
-
I took a version of nectardesign.com’s wordpress and put it into a folder on https://rasadesign.com/nectardesign/ and changed the .htaccess file to read:
# BEGIN WordPress
RewriteEngine On
RewriteBase /nectardesign/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress(both with and without the module conditional)
The links, for example, https://www.rasadesign.com/nectardesign/category/all-products trip my site’s 404 error.
The database was a direct copy of the one that’s still working correctly at https://nectardesign.com except for changing ‘nectardesign.com’ to ‘rasadesign.com/nectardesign’ in the database in the options table.
What can I do to fix this?
- The topic ‘htaccess problem: links don’t work after move’ is closed to new replies.