테스트 사이트 - 개발 중인 베타 버전입니다

워드프레스 index.php 파일명 변경 채택완료

비비비비빕 9년 전 조회 3,750

워드프레스 index.php 파일명을 main.php 같은걸로 바꾸고싶은데 바꾸면 워트프레스(사이트)가 동작을 안합니다. 바꿔도 동작하게 할 수 있을까요? 

 

위에서 말한 index.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/wp-blog-header.php' );

 

이부분 써있는 최상단 index파일입니다 (현재 문제가 index.php 파일을 main.php나 다른이름으로 바꾸면 작동을 안하는것입니다)

ex) aaa.com/index.php 로 실행되던걸  aaa.com/main.php 로 이름을 바꿔도 실행되게 하고 싶습니다

댓글을 작성하려면 로그인이 필요합니다.

답변 1개

채택된 답변
+20 포인트
8년 전

단순히 워드 프레스 내부가 아니라, 설치된 apache나 nginx 설정에서도 보셔야할것 같습니다. 

간단하게 main.php에서 

include("./index.php");

?>

해버리면 원하는 바가 되지는 않으시는건가요? 

로그인 후 평가할 수 있습니다

댓글을 작성하려면 로그인이 필요합니다.

답변을 작성하려면 로그인이 필요합니다.

로그인