localhost/test.php 일때 .php를 없애고싶으면 아래와같이 설정함.


httpd.conf(아마치 설정파일)에서


LoadModule rewrite_module modules/mod_rewrite.so


<IfModule mod_rewrite.c>

Options +MultiViews

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^([^\.]+)$ $1.php [NC,L]

</IfModule>


저장후 아파치 재시작


끝.

+ Recent posts