6 lines
254 B
ApacheConf
6 lines
254 B
ApacheConf
|
RewriteEngine On # Turn on the rewriting engine
|
||
|
RewriteRule ^read$ read.php [NC,L]
|
||
|
RewriteRule ^read/([0-9_-]*)$ read.php?id=$1 [NC,L]
|
||
|
RewriteRule ^create$ create.php [NC,L]
|
||
|
RewriteRule ^update$ update.php [NC,L]
|
||
|
RewriteRule ^delete$ delete.php [NC,L]
|