我刚刚在网站上安装了wordpress。但是,我有一些独立的php文件,用于分析网站上的数据库数据,现在在尝试访问时返回404。
例如:
www.mywordpresssite.com/myscripts/myscript.php
这将返回404.
这是我的.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>
有没有什么方法可以实现对所述目录/文件的正常访问,但却没有破坏Wordpress的当前功能?
非常感谢
答案 0 :(得分:0)
将.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>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/myscripts/(.*)$ [OR]
RewriteRule ^.*$ - [L]
</IfModule>