2017-05-12 4 views

답변

0

.htaccess를 사용하는 것이 가장 좋습니다.

# This allows you to redirect your entire website to any other domain 
Redirect 301/http://mt-example.com/` 

# This allows you to redirect index.html to a specific subfolder 
Redirect /index.html http://example.com/newdirectory/` 

# Provide Specific Index Page (Set the default handler) 
DirectoryIndex index.html 

또한 여기가 htaccess로를 만들고 루트 htaccess로의 상단에

Video creaton and edition of .htaccess in wordpress

0

을 편집하는 방법에 대한 비디오입니다,이를 넣어 :

RewriteEngine on 

RewriteRule ^(.+)\.html$ /$1.php [L,R] 

이 뜻을 모든 HTML 요청을 PHP로 리디렉션합니다. 예 : /file.html ~ /file.php R은 te mially redirect 플래그를 사용하면 규칙이 정상적으로 작동 할 때 R = 301 영구 리디렉션으로 변경할 수 있습니다.