index.php 의 위치.. – 한국워드프레스사용자모임 https://kopress.kr/topic/indexphp-%ec%9d%98-%ec%9c%84%ec%b9%98/feed Mon, 25 Nov 2024 12:17:29 +0000 https://bbpress.org/?v=2.6.9 ko-KR https://kopress.kr/topic/indexphp-%ec%9d%98-%ec%9c%84%ec%b9%98/#post-4167 <![CDATA[index.php 의 위치..]]> https://kopress.kr/topic/indexphp-%ec%9d%98-%ec%9c%84%ec%b9%98/#post-4167 Tue, 24 Aug 2010 16:17:27 +0000 sury7068 현재 워드프레스가 html/wordpress/index.php 에 있는데요.

도메인을 치면 처음 연결되는 곳이 html/ 요기더라구요. 그래서 html/index.html에 프레임하나 만들고 거기다가 html/wordpress/index.php를 호출하는 방식으로 하고 있는데..

/* index.html의 내용
<html>
<TITLE>dmp TeamBlog dmpzoo</TITLE>
<frameset rows=”1*”>
<frame name=”main” src=”http://dmpzoo.com/wordpress/”&gt;
</frameset>
</html>
*/

도메인 치면 바로 html/wordpress/index.php 연결하는 방법이 없을까요?

[attachment=9090,4]

]]>
https://kopress.kr/topic/indexphp-%ec%9d%98-%ec%9c%84%ec%b9%98/#post-4168 <![CDATA[Reply To: index.php 의 위치..]]> https://kopress.kr/topic/indexphp-%ec%9d%98-%ec%9c%84%ec%b9%98/#post-4168 Wed, 25 Aug 2010 02:37:04 +0000 임 민형 아파치설정에서 DirectoryRoot 를 수정해주면 간단하게 해결되는 문제이지만,
호스팅업체에서 제공해주고 있는것을 사용한다면 .htaccess를 이용하여 할 수 있습니다.
html/ 에서 .htaccess 파일을 만들고, 다음과 같은 내용을 삽입하면 됩니다.
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(wordpress)/
RewriteCond %{HTTP_HOST} ^dmpzoo.com [NC]
RewriteRule ^(.*)$ /wordpress/$1 [L]
해당 서버가 mod_rewrite를 지원하지 않는다면 안될 수도 있습니다.

]]>
https://kopress.kr/topic/indexphp-%ec%9d%98-%ec%9c%84%ec%b9%98/#post-4169 <![CDATA[Reply To: index.php 의 위치..]]> https://kopress.kr/topic/indexphp-%ec%9d%98-%ec%9c%84%ec%b9%98/#post-4169 Wed, 25 Aug 2010 06:37:24 +0000 sury7068 우오 감사해요. .htaccess를 요럴때 쓰는거구나.. 서버가 지원할지는 모르겠짐나 해볼께요!

]]>
https://kopress.kr/topic/indexphp-%ec%9d%98-%ec%9c%84%ec%b9%98/#post-4170 <![CDATA[Reply To: index.php 의 위치..]]> https://kopress.kr/topic/indexphp-%ec%9d%98-%ec%9c%84%ec%b9%98/#post-4170 Wed, 25 Aug 2010 07:20:11 +0000 sury7068 성공했어요! 감사합니다. ^_^/

]]>