htaccess 관련 질문입니다..
본문
제가 어느부분을 잘못 썼는지 좀 봐주실 분 계시면 고쳐주세요 ㅠ ㅠ
AddType application/x-httpd-php .htm .html
#HTTPSへリダイレクト
RewriteEngine On
RewriteBase /
RewriteRule ^join/form\.html$ https://www.test.or.jp/join/form.html [R=301,L]
RewriteRule ^site/contact\.html$ https://www.test.or.jp/site/contact.html [R=301,L]
#404 not found
ErrorDocument 404 http://www.test.or.jp/site/404.html
#wwwの有り無し統一
RewriteCond %{HTTP_HOST} ^(test\.or\.jp)(:80)? [NC]
RewriteRule ^(.*)$ http://www.test.or.jp/$1 [R=301,L]
RewriteEngine off
답변 2
마지막에 RewriteEngine off 을 꼭 써야하는 건가요?
rewrite rule 설정에서 RewriteEngine off 를 쓰는 경우는 못 본 듯 한데요.
테스트는 안해봤지만.. 아래처럼 수정을 해보세요.
RewriteCond %{HTTPS} off
RewriteRule ^join/form\.html$ https://www.test.or.jp/join/form.html [R=301,L]
RewriteCond %{HTTPS} off
RewriteRule ^site/contact\.html$ https://www.test.or.jp/site/contact.html [R=301,L]
답변을 작성하시기 전에 로그인 해주세요.