Text

인덱스 페이지 만들기

2017. 7. 17. 01:15

1. skin.html 에서 아래 부분 찾아서

<script>
var pathArray = location.href.split('/');
if(pathArray[3] == '') {
	$('html').css('display','none');
	location.href = '/category';
}
</script>

아래처럼 변경

<script>
var pathArray = location.href.split('/');
</script>




2. skin.html 에서 아래 부분 찾아서

아래처럼 변경




3. 이 부분이 http://xxx.tistory.com/ 을 접속했을때 뜨는 인덱스 페이지가 됩니다.


'Text' 카테고리의 다른 글

공지를 메인으로 설정하기  (4) 2017.07.17
스킨 가로폭 조정  (1) 2017.07.13
텍스트가 밑에 뜨는 갤러리형 리스트 사용  (0) 2017.07.13
리스트형 목록 사용  (0) 2017.07.10
보호글  (0) 2017.07.10