2012-06-15 2 views

답변

1
RewriteEngine On 
RewriteRule ^blog\.html$ /blog [L,R=301] 
RewriteRule ^blog$ blog.html 

해야 작업. 두 번째 줄에서는 blog.html 액세스가 모두 301 - Moved Permanently HTTP 헤더를 가져와 /blog을 자동으로 엽니 다. 세 번째 줄은 /blog이 서버의 /blog.html을 가리키고 있습니다.

관련 문제