我在root上安装了wordpress。现在我想要的是,我将创建一个名为test的文件夹,并在那里推送一些文件并尝试访问它但我无法访问该文件夹,因为我认为这是htacess文件。
我的htacess文件就像这样
RewriteEngine Off
SetEnv DEFAULT_PHP_VERSION 53
DirectoryIndex index.cgi index.php
# 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
文件夹结构就像这样
./wp-content
./wp-admin
./...
./...
./bot
答案 0 :(得分:0)
如果是.htaccess问题,您可以在测试文件夹中创建另一个.htaccess文件,并覆盖其父级的设置。
您可能需要将以下内容添加到父.htaccess文件中以启用级联:
AllowOverride All
http://httpd.apache.org/docs/2.2/mod/core.html#AllowOverride