12 lines
367 B
ApacheConf
12 lines
367 B
ApacheConf
Options +FollowSymLinks -MultiViews
|
|
# Turn mod_rewrite on
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
|
|
# RewriteRule ^product/(([0-9]/[0-9a-zA-Z-\s]+)+)$ product.php?id=$1&string=$2
|
|
|
|
RewriteRule ^([a-z_]+)\/?([0-9a-z]*)\/?([0-9a-z]*)$ index.php?page=$1&subpage=$2&id=$3 [NC,L]
|
|
|
|
|
|
|
|
# RewriteRule ^\/?([a-z_]+)\/?([0-9a-z_\.\?\&\=]*)\/?(.*)$ index.php?page=$1&subpage=$2&id=$3 [NC,L] |