728x90
SEO 란 Search Engine Optimization 의 약자로 검색엔진 최적화하는 방법입니다. Spring 은 SSR(Server Side Rendering) 방식이기 때문에 간단한 설정으로 SEO 가 가능합니다. 우선 index 페이지에 meta 태그들을 추가해야 합니다.
<head>
<title>타이틀</title>
<meta name="apple-mobile-web-app-title" content="타이틀"/>
<meta name="robots" content="index,follow"/>
<meta name="keywords" content="키워드 작성">
<meta property="og:title" content="타이틀">
<meta property="og:type" content="website">
<meta property="og:url" content="URL 작성">
<meta property="og:image" content="이미지 경로 작성">
<meta property="og:description" content="사이트 설명 작성"/>
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="타이틀">
<meta name="twitter:url" content="URL 작성">
<meta name="twitter:image" content="이미지 경로 작성">
<meta name="twitter:description" content="사이트 설명 작성"/>
</head>
위와 같이 robots follow 를 설정해주고, 알맞은 URL 과 사이트 설명을 작성합니다. 이후 프로젝트 최상위에 robots.txt 파일을 추가합니다.
User-agent: *
Allow: /
위와 같이 설정하면 robot 이 자동으로 수집하여 검색 우선순위를 높여줍니다. 좀 더 자세한 리포트를 보고 싶다면 Naver 의 Search Advisor 를 이용하면 될 것 같습니다.
728x90
'프레임워크 > SpringMVC' 카테고리의 다른 글
[Spring] Caused by: java.sql.SQLException: IO 예외 상황: Invalid connection string format, a valid format is: "host:port:sid" (0) | 2024.06.28 |
---|---|
[Spring] Filter, Interceptor, AOP 의 차이 (0) | 2024.05.13 |
[Spring] GET 방식 특수문자 처리하기(The valid characters are defined in RFC 7230 and RFC 3986) (0) | 2024.05.13 |
[Spring] @Value null 확인사항 (0) | 2024.05.13 |
[Spring] Tomcat docBase 설정 (0) | 2023.10.27 |