Redirect?
-
Running wordpress on Godaddy Linux deluxe. I have some custom redirects running before the wordpress redirects that I think are causing this issue. I’m not able to get to my wordpress post URLs. I keep getting redirected to the home page of the site that I’ve set to be redirected to. Too my knowledge, I set the redirects up so that only index.php, index.html, and index.htm are redirected to home.php. I’m not trying to use wordpress’ pretty URLs–just the default urls.
Here’s the htaccess code:
Redirect 301 /index.htm http://***.net/home.php
Redirect 301 /index.html http://***.net/home.php
Redirect 301 /index.php http://***.net/home.php
Redirect 301 /membertour.php http://***.net/***.php
Redirect 301 /articles.php http://***.net***.php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Any help would be greatly appreciated.
The topic ‘Redirect?’ is closed to new replies.