336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

사용자가 http://www.domain.com으로 브라우저에서 웹페이지에 접근 시 자동으로 https://www.domain.com으로 요청하려고 한다.

 

[.htaccess]

 

<IfModule mod_rewrite.c>

 RewriteEngine On

 RewriteBase /

 RewriteCond %{SERVER_PORT} 80

 RewriteRule ^(.*)$ https://domain.com/$1 [R,L]

 RewriteCond $1 !^(index\.php|images|captcha|assets|robots\.txt)

 RewriteCond %{REQUEST_FILENAME} !-f

 RewriteCond %{REQUEST_FILENAME} !-d

 RewriteRule ^(.*)$ /index.php/$1 [L]

</IfModule>

posted by 어린왕자악꿍