Hostwinds 튜토리얼

에 대한 검색 결과:


목차


단순 리디렉션 :
더 많은 고급 옵션 :
WordPress 사용자의 경우 :

.htaccess 파일을 편집하는 방법

태그 : htaccess 

단순 리디렉션 :
더 많은 고급 옵션 :
WordPress 사용자의 경우 :

.htaccess 파일을 편집하는 것은 매우 용서하지 않습니다. 사소한 실수라도 사이트에 콘텐츠가 잘못 표시되거나 전혀 표시되지 않을 수 있습니다.

.htaccess 파일을 편집 할 때 항상 문제가 발생한 경우 작업 구성으로 돌아갈 수 있도록 백업 복사본을 만드십시오.

Linux 시스템은 URL까지도 대소 문자를 구분합니다.

파일을 업로드하는 데 문제가있는 경우 htaccess.txt의 이름을 지정한 다음 서버에 한 번 이름을 바꿀 수 있습니다.

ReplaceWithYourDomain.com은 아래 예에서 귀하의 도메인 이름으로 대체되어야합니다.

단순 리디렉션 :

# Permanent Redirect:
Redirect 301 / http://ReplaceWithYourDomain.com/
# Temporary Redirect (Use this if you plan to move back to the original site to save your SEO scores):
Redirect 302 / http://ReplaceWithYourDomain..com/
# Redirect the index page to a subdirectory:
Redirect /index.html http://ReplaceWithYourDomain.com/subdirectory/
# Redirect from an old sub-directory or file to a new sub-directory or file:
Redirect /OldSubdirectory/OldFile.html http://ReplaceWithYourDomain.com/NewSubdirectory/NewFile.html
# Define an alternate index file:
DirectoryIndex mynewindex.html

더 많은 고급 옵션 :

# Redirect YourDomain.com to www.YourDomain.com:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
# Redirect www.YourDomain.com to YourDomain.com:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^ReplaceWithYourDomain.com$ [NC]
RewriteRule ^(.*)$ http://ReplaceWithYourDomain.com/$1 [R=301,L]
# Redirect an open connection to your secure SSL connection:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.ReplaceWithYourDomain.com/$1 [R,L]
# Hide contents of a directory if index file does not exist
Options -Indexes

WordPress 사용자의 경우 :

사이트가 작동을 멈춘 경우 .htaccess 파일을 먼저 확인해야합니다.

.htaccess 파일의 이름을 .htaccess_bak로 바꾼 다음 사이트로 이동합니다.

이것은 많은 시간 동안 작동합니다.

.htaccess 파일의 이름을 바꾸면 사이트를 수정 한 다음 다음 표준 WordPress .htaccess 구성을 새 .htaccess 파일에 배치 할 수 있습니다.

다음은 기본 WordPress .htaccess 파일의 내용입니다.

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]  
# END WordPress

작성자 Hostwinds Team  /  팔월 21, 2017