Where's the redirect happening?
I've inherited a Wordpress site. Have a ton of PHP experience but only moderate Wordpress experience.
Currently the URL: http://iridescentlearning.org/technovation
Redirects to another page. My client wants that redirection changed. But I can't figure out where that redirection is happening.
The .htaccess file has this...
# 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
RewriteEngine on
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/ab6700/public_html/php.ini
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>
...which doesn't look to me like it does anything.
I've looked through all the Settings and can't see anything that has to do with redirection.
And the page it's redirecting to, I can't find anything there that suggests that the page should go to it.
I do see one plugin called "Better Anchor Links" but it's been deactivated.
So where is this redirection happening from?
I've inherited a Wordpress site. Have a ton of PHP experience but only moderate Wordpress experience.
Currently the URL: http://iridescentlearning.org/technovation
Redirects to another page. My client wants that redirection changed. But I can't figure out where that redirection is happening.
The .htaccess file has this...
# 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
RewriteEngine on
<IfModule mod_suphp.c>
suPHP_ConfigPath /home/ab6700/public_html/php.ini
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule>
...which doesn't look to me like it does anything.
I've looked through all the Settings and can't see anything that has to do with redirection.
And the page it's redirecting to, I can't find anything there that suggests that the page should go to it.
I do see one plugin called "Better Anchor Links" but it's been deactivated.
So where is this redirection happening from?
No comments:
Post a Comment