我有一个wordpress网站,在根目录下有一个名为/ ideal /.
的文件夹/ ideal /文件夹的功能是通过访问者的网站进行付款。
一切都运作良好,因为几天页面出现问题。
当我导航到我的网站http://www.nibincasso.nl/ideal/时,它会显示404错误。
随着wordpress 4.0的发布,它看起来像wordpress试图为文件夹/理想/做一些动态链接。
但是我希望它作为静态页面打开,而不是将其作为wordpress动态页面。 “http://www.nibincasso.nl/ideal/index.php”。
.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
有人可以帮我解决这个问题吗?
亲切的问候,
法币
更新*
我在我的root上创建了一个新的子目录,其中一个空白的index.php页面只说测试 这个很好。但是当我尝试使用index.php进入子目录/ ideal /时,我得到404错误。怎么样?
答案 0 :(得分:0)
尝试以下
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /ideal/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /ideal/index.php [L]
</IfModule>
# END WordPress
答案 1 :(得分:0)
/ ideal /文件夹中的索引中的php代码似乎有问题。 我将寻找解决方案,这不是wordpress问题。
感谢您帮助我到目前为止。