小白提问:如何把wordpress定向到主页?
装了lnmp一键安装包,然后找了教程装了wordpress现在的问题是,打开主页,显示的是 lnmp成功安装的页面:恭喜,LNMP一键安装包安装成功而wordpress 需要在 www.homepage.com/wordpress 才能打开。。
我想打开主页 www.homepage.com 直接就打开wordpress, 如何操作呢??
小白拜谢了。。 你非要把wordpress放二级目录,那肯定得加上二级目录wordpress才能访问了
用winscp将wordpress下的目录及文件移至wordpress的上一级目录。
回复 2# 的帖子
已经把wordpress放到 /home/wwwoot/www.92zjx.com 里了但是打开 www.92zjx.com 还是出现404.。。 看了配置文件也没问题。。。
server
{
listen 80;
server_name www.92zjx.com 92zjx.com;
index index.html index.htm index.php default.html default.htm default.php;
root/home/wwwroot/www.92zjx.com;
include wordpress.conf;
location ~ .*.(php|php5)?$
{
try_files $uri =404;
fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
} 看了配置文件也没问题。。。
server
{
listen 80;
server_name www.92zjx.com 92zjx.com;
index index.html index.htm index.php default.html default.htm default.php;
root/home/wwwroot/www.92zjx.com;
include wordpress.conf;
location ~ .*.(php|php5)?$
{
try_files $uri =404;
fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
} 额,找到原因了,92zjx定义了两次,把/usr/local/nginx/conf/nginx.conf里绑定的删除就好了! 可以用.htaccess也能实现的哈
页:
[1]