사용자 정의 .htaccess 파일을 사용하는 가상 호스트에서 오류 404 발생
<p>로컬 Linux 서버에 apache2를 설치했습니다. 여기에는 <code>pcts.local</code>라는 가상 호스트가 있으며 루트 디렉터리는 <code>/var/www/repos/pcts/</code>입니다. pcts.local의 루트에는 다음과 같이 지정되지 않은 경우 .php를 포함하도록 URL을 다시 작성하려고 시도하는 .htaccess 파일이 있습니다. </p>
<pre class="brush:php;toolbar:false;">http://pcts.local/ -> http://pcts.local/index.php
http://pcts.local/contact -> http://pcts.local/contact.php</pre>
<p>문제는 <code>http://pcts.local/contact</code>에서 오류 404가 발생하지만 <code>http://pcts.local/contact.php</code> 200개 중. </p>
<h3>가상 호스트 구성: </h3>
<pre class="brush:php;toolbar:false;"><VirtualHost *:80>
서버 이름 pcts.local
ServerAdmin webmaster@localhost
DocumentRoot /var/www/repos/pcts
오류 로그 ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log 결합
</VirtualHost></pre>
<h3>.htaccess 파일은 <code>/var/www/repos/pcts/</code></h3>에 있습니다.
<pre class="brush:php;toolbar:false;">RewriteEngine 켜기
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.+)$ $1.php [NC,L]</pre>
<p>도움을 주셔서 미리 감사드립니다! </p>