2013-09-22 3 views
1

를 구문 분석, 그래서 난 내 htaccess로 파일에 다음 줄을 추가 :htaccess로 AddType 지정은 HTML (이상한 행동) 내 .html 중에서 파일이 .PHP로 처리해야

AddType application/x-httpd-php .htm .html 

그것은 WAMP에 크게 작동 ,하지만 생산에 이상한 일이 발생합니다.

domain.com을 입력하면 서버가 기본 페이지를 열게하면 index.html이 열리고 php (좋은!)으로 처리됩니다. 그러나 .html 파일 을 직접 (domain.com/index.html 또는 다른 html 파일)로 실행하면 해당 파일은 PHP로 처리되지 않습니다.

나는 다른 조합을 성공시키지 않고 시험해 보았습니다. 예를 들면 :

AddHandler application/x-httpd-php .php .html .htm 

또는

AddType application/x-httpd-php5 .php 

또는

RemoveHandler .html .htm 
AddType application/x-httpd-php .php .htm .html 

또는

<FilesMatch "\.html$"> 
    ForceType application/x-httpd-php 
</FilesMatch> 

나는 또한 충돌이 아니다 확인하기 위해 다른 모든 htaccess로 라인을 제거

.

내 서버는 Apache와 함께 UNIX FreeBSD에서 공유되고 실행됩니다. 어떤 도움을 주셔서 감사합니다! 감사.

답변

0

AddHandler fcgid-script .htm .html 

또는

AddHandler x-mapp-php5 .html .htm 
시도