고정주소 문의 – 한국워드프레스사용자모임 https://kopress.kr/topic/%ea%b3%a0%ec%a0%95%ec%a3%bc%ec%86%8c-%eb%ac%b8%ec%9d%98/feed Wed, 16 Jul 2025 23:28:38 +0000 https://bbpress.org/?v=2.6.9 ko-KR https://kopress.kr/topic/%ea%b3%a0%ec%a0%95%ec%a3%bc%ec%86%8c-%eb%ac%b8%ec%9d%98/#post-4391 <![CDATA[고정주소 문의]]> https://kopress.kr/topic/%ea%b3%a0%ec%a0%95%ec%a3%bc%ec%86%8c-%eb%ac%b8%ec%9d%98/#post-4391 Sun, 24 Apr 2011 03:42:17 +0000 anko2010 현제 주소 임니다 http://anko.hostei.com/wordpress/

http://anko2010.wo.tc 으로 고정주소를 사용 싶습니다

그런데요 아무리 해도 http://anko.hostei.com/wordpress/로 보이게 되네요

어떻게 해야지 http://anko2010.wo.tc 으로 고정할수 있으까요 답변좀 부탁드리겠습니다

예제 =>http://tops.wo.tc/

]]>
https://kopress.kr/topic/%ea%b3%a0%ec%a0%95%ec%a3%bc%ec%86%8c-%eb%ac%b8%ec%9d%98/#post-4392 <![CDATA[Reply To: 고정주소 문의]]> https://kopress.kr/topic/%ea%b3%a0%ec%a0%95%ec%a3%bc%ec%86%8c-%eb%ac%b8%ec%9d%98/#post-4392 Sun, 24 Apr 2011 03:45:54 +0000 anko2010 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(‘./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;

require_once( dirname(__FILE__) . ‘/wp-load.php’ );

wp();

require_once( ABSPATH . WPINC . ‘/template-loader.php’ );

}

?>

]]>