0

我在我的根目录(www 文件夹内)中安装了 wp。在根目录中,我还创建了“scraper”文件夹,里面有几个文件。当我去 myblog.com/scraper/index.php 它说 not found 。但我可以访问 'scraper' 目录中的 js 和 css 文件。我在 SO 的 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
4

0 回答 0