Routing 소개
고도몰의 Routing 을 소개하는 내용입니다.
📌 라우팅 소개
📌 Rewrite Module 스펙
DirectoryIndex route.php
RewriteEngine on
RewriteCond %{REQUEST_URI} \.(gif|jpe?g|png|js|css|swf|ico|eot|woff|ttf)$ [NC,OR]
RewriteCond %{REQUEST_URI} ^/?blank\.php$
RewriteRule ^ - [L]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^\/])$ $1/
RewriteRule ^ route.php [L]Last updated