카테고리 없음

/wp 워드프레스 도메인 변경

프리모션 2023. 9. 9. 16:41
반응형

 

매번 하면서 햇갈리는 도메인 변경

한번에 정리하세요

 

이제 속이 시원 하네요 !!!!!

 

 

 

 

기본 내용

<?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 __DIR__ . '/wp-blog-header.php';

 

 

 

wp 폴더안에 있는 index.php 이동

 

 

수정파일 넣기

-  /wp/추가가 핵심내용

<?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 __DIR__ . '/wp/wp-blog-header.php';

 

 

사이트 주소를 위와같이 /wp를 삭제 후 저장하면

짜잔 하고 화면을 볼수 있습니다.

 

 

 

 

반응형