我继承了一个Wordpress网站。有大量的PHP经验,但只有适度的Wordpress经验。
当前URL:http://iridescentlearning.org/technovation
重定向到其他页面。我的客户希望更改重定向。但我不知道这种重定向发生在哪里。
这个htaccess文件具有以下内容。。。
# 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>
。。。在我看来,它并没有任何作用。
我查看了所有设置,但看不到与重定向有关的任何内容。
而它重定向到的页面,我在那里找不到任何建议该页面应该转到它的内容。
我确实看到一个名为“更好的锚链接”的插件,但它已被停用。
那么,这种重定向是从哪里发生的呢?