wordpress安装完访问页面列了目录一堆文件的解决办法

apache+php系统访问时只列出目录的解决办法

安装wordpress完成后,访问页面出现下面的字样,列了目录一堆文件:
Index of /wordpress
下面是解决办法:
1. 在wordpress安装目录新建.htaccess文件,输入下面的内容
DirectoryIndex index.php index.html
# BEGIN WordPress

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

# END WordPress
2.在apache 的httpd.conf的下面的目录把红色的None改成All,然后用命令apachectl stop, apachectl start重启apache

AllowOverride None
Options None
Order allow,deny
Allow from all

 

你可能感兴趣的:(网站)