我只是通过复制器在我的本地设置现有网站。
然而,当我完成设置并点击链接时,它将我重定向到http://localhost/xampp/
而不是http://localhost/new_csa/about-us
当我检查wp_options时,我不知道是什么导致了这一点,它是正确的家庭和siteurl = http://localhost/new_csa
。
我不知道造成这种情况的原因。当我去我的永久链接
我可以看到这个.htaccess重写规则
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /new_csa/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /new_csa/index.php [L]
</IfModule>
但是当我转到.haccess文件的实际内容时,我只能看到这个内容:
# 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
我认为这是一个htaccess问题..但我真的找不到它..
提前感谢。