PHP 5.5를 사용하여 Ubuntu Precise에서 Apache 실행
내 액세스를 시도 var/www/
하면 500이 나옵니다.
/var/log/apache2/error.log
보여줍니다 :
/var/www/web/.htaccess: <IfModule not allowed here
내 .htacess는 다음과 같습니다
DirectoryIndex app.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
RewriteRule ^(.*) - [E=BASE:%1]
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^app\.php(/(.*)|$) %{ENV:BASE}/$2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule .? - [L]
RewriteRule .? %{ENV:BASE}/app.php [L]
</IfModule>
<IfModule !mod_rewrite.c>
<IfModule mod_alias.c>
RedirectMatch 302 ^/$ /app.php/
</IfModule>
</IfModule>
내 apache.conf에 다음을 추가했습니다.
<Directory />
AllowOverride ALL
</Directory>
그리고 아파치를 다시 시작한 후에 작동했습니다.