Redirect Problem
-
I changed my root from https://larrybrownsports.com/wordpress to https://larrybrownsports.com. I would like to redirect from /wordpress to my new root of https://larrybrownsports.com
I have been told I need to adjust the .htaccess in my /wordpress file. I have tried to do that but couldn’t figure it out. Here’s what the current .htaccess looks like in the /wordpress folder. Anyone know what code I can put in here, and where, to redirect from /wordpress to my new home?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule># END WordPress
- The topic ‘Redirect Problem’ is closed to new replies.