참고사이트
httpd.apache.org/docs/2.2/ko/misc/rewriteguide.html
URL 재작성 지침서 - Apache HTTP Server Version 2.2
Please note This document refers to the 2.2 version of Apache httpd, which is no longer maintained. The active release is documented here. If you have not already upgraded, please follow this link for more information. You may follow this link to go to the
httpd.apache.org
httpd.apache.org/docs/current/rewrite/intro.html
Apache mod_rewrite Introduction - Apache HTTP Server Version 2.4
Apache mod_rewrite Introduction This document supplements the mod_rewrite reference documentation. It describes the basic concepts necessary for use of mod_rewrite. Other documents go into greater detail, but this doc should help the beginner get their fee
httpd.apache.org
prev.net-newbie.com/trans/mod_rewrite.html
Apache module mod_rewrite
#!/path/to/bin/perl ## ## txt2dbm -- convert txt map to dbm format ## use NDBM_File; use Fcntl; ($txtmap, $dbmmap) = @ARGV; open(TXT, "<$txtmap") or die "Couldn't open $txtmap!\n"; tie (%DB, 'NDBM_File', $dbmmap,O_RDWR|O_TRUNC|O_CREAT, 0644) or die "Couldn
prev.net-newbie.com