유돌이

calendar

1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30

Notice

2019. 9. 19. 10:00 유닉스*리눅스*SE

[apache 설정]

 

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_FILENAME} !-f

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

 

 

[nginx 설정]

try_files $uri $uri.html $uri/ @extensionless-php;

 

location @extensionless-php {               

        rewrite ^(.*)$ $1.php last;

 }

posted by 유돌이