Hi! New to this site, but I've been struggling with this for a few weeks. I have changed my site from html to wordpress php. Getting a lot of 404's as the redirects are not going where i need them to. This is what I currently have in my htaccess file.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I am somewhat of a noobie, so I apologize if this is an easy answer.
Appreciate all of your help!