-
2017/03/25 6:08 오후 #39574
안녕하세요 조그만 사업을 위하여 홈페이지를 구축하는데 …(유튜브 송무복 선생님의 시드니 테마 이용)
내부(iptime공유기)는 워드프레스가 접속이되는데
외부(휴대폰 모바일)에서는 아파치(apach), phpinfo.php, 웹드라이브 모두 접속이 되는데
워드프레스는 접속이 안되요
에러 코드는 ERR-CONNECTIONTIMED-OUT 이네요
도움 부탁드립니다
index.php 파일
<?php
/**
* Front to the WordPress application. This file doesn’t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*//**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(‘WP_USE_THEMES’, true);/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . ‘/wp-blog-header.php’ );wp-blog-header.php 파일
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/if ( !isset($wp_did_header) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once( dirname(__FILE__) . ‘/wp-load.php’ );// Set up the WordPress query.
wp();// Load the theme template.
require_once( ABSPATH . WPINC . ‘/template-loader.php’ );입니다
2017/03/26 9:55 오후 #39586언급하신 부분들만 봐서는
내부망 이상없음, 외부망 이상없음, index.php 이상없음, wp-blog-header.php 이상없음
입니다.혹시 워드프레스 최초 설치하실 때 웹브라우저 주소창에 http://localhost 또는 http://192.168.xxx.xxx(서버장비 내부망 IP주소)를 입력해서 서버장비에 접근하셨는지요? 이게 의심스럽습니다.
-
AuthorPosts
- 답변은 로그인 후 가능합니다.