这是我的网站http://www.harimaumalaysia.my/的网址,当我通过此网址访问时,我可以看到我的网站没有错误。
但是当我使用此网址http://www.harimaumalaysia.my/index.php时,它会重定向到此网址www.harimaumalaysia.my/demo1。
如何在使用index.php时发生这种情况我在数据库和固定链接中更改了我的网站网址,但它没有解决我的问题,任何人都可以帮助我解决这个问题,这是我的ht-access文件。
# 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
答案 0 :(得分:0)
设置索引文件的重写规则,如下所示。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(css|editor|editordocs|images|js|sysimgdocs)/.*$ - [PT]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
</IfModule>