2017-11-09 2 views
0

drupal 7을 rhel에 설치하십시오. index.php로 페이지에 액세스 할 수 있습니다.Drupal 7은 URL의 index.php 와만 작동합니다. 친절한 깨끗한 URL을 사용하고 싶습니다.

sivaraj.com 잘 작동 - index.php를하지 않고, 페이지 (404) 내 루트 응용 프로그램 폴더로 리디렉션됩니다 var에/www /에서 HTML/sivaraj

sivaraj.com/index.php/profile입니다/프로필 - 점점 404

아파치에서 mode_rewrite가 사용 설정되었습니다.

<Directory "/var/www/html"> 
    Options Indexes FollowSymLinks 
    AllowOverride None 
    Allow From All 
    Require All Granted 
</Directory> 

로 변경 에 AllowOverride 모든 500

<Directory "/var/www/html"> 
    Options Indexes FollowSymLinks 
    AllowOverride None 
    Allow From All 
    Require All Granted 
</Directory> 

드루팔 기본 htaccess로에서 아무것도 변경하지 않은 내부 서버 오류를 제공합니다. RewriteRule으로 시도해도 index.php가 제거되지 않았습니다.

답변

관련 문제