Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End 301 Redirect Problem Re: 301 Redirect Problem

#66595
nosecreek
Member

While that solution would work I’d rather not go that route if possible…

My mod_rewrite rules look like this:


# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress

Does that look like its causing the problem? Is there any way I could modify it to make it work like I want? Sorry, I’m not very familiar with how mod_rewrite works.