nginx 프록시 패스를 사용하여 기본 웹사이트에서 tomcat을 실행하고 있습니다. 이제 다음과 같이 하위 디렉터리와 동일한 도메인에 wordpress를 설치하려고 합니다.example.com/blog
nginx에서 다음 구성을 사용하고 있습니다.
location /blog {
root /home/blog/html;
index index.php index.htm index.html;
try_files $uri $uri/ /blog/index.php?$args;
}
location ~ \.php$ {
root /home/blog/html;
try_files $uri =404;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
fastcgi_read_timeout 200;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/blog-php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
access_log off;
log_not_found off;
expires 30d;
}
WordPress 설치 페이지를 방문하면 example.com/blog
다음과 같이 보입니다.
http://example.com/wp-admin/setup-config.php
Tomcat을 사용하여 WordPress를 올바르게 설치하는 방법은 무엇입니까?
답변1
wordpress
하위 디렉터리에 있다고 알려줘야 합니다 . wp-config.php
대시보드 대신 사용 하고 구성표나 도메인 이름을 포함하지 않습니다.
define( 'WP_SITEURL', '/blog' );
define( 'WP_HOME', '/blog' );