Home 게시판 커뮤니티 Q&A 외부에서 접속이 안되네요 도와주세요(내부접속은 됩니다)

2개 답변, 2 voices Last updated by Avatar of 윤능한윤능한 8 years, 4 months 전
  • Avatar of 윤능한윤능한
    Participant
    @anan
    #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’ );

     

    입니다

     

     

    Avatar of 윤능한
    워드프레스 초보입니다

    워드프레스로 사업용 홈페이지 구축을 하고자

    배우고 있고요

    아무쪼록 잘 부탁합니다

    Avatar of jimnongjimnong
    Participant
    @jimnong
    #39586

    언급하신 부분들만 봐서는
    내부망 이상없음, 외부망 이상없음, index.php 이상없음,  wp-blog-header.php 이상없음
    입니다.

    혹시 워드프레스 최초 설치하실 때 웹브라우저 주소창에 http://localhost 또는 http://192.168.xxx.xxx(서버장비 내부망 IP주소)를 입력해서 서버장비에 접근하셨는지요? 이게 의심스럽습니다.

    Avatar of jimnong
    티스토리 블로그 : http://jimnong.tistory.com
    워드프레스로 구축한 사이트 : https://www.sobi.tips
    Avatar of 윤능한윤능한
    Participant
    @anan
    #39587

    감사합니다

    말씀해주신 원인이었습니다

    해서 외부망에서 들어오는 ip로 작성해서

    올리니 외부접속이 가능합니다

     

    내부망에서도 동일 ip로 들어오니

    접속이 가능했습니다

     

    잘 배웠습니다

3 글 보임 - 1에서 3 까지 (총 3 중에서)
  • 답변은 로그인 후 가능합니다.