blob: 491bdcef50d5a7e16e3b1d4e23664fbd94f93811 (
plain)
1
2
3
4
5
6
|
<IfModule mod_rewrite.c>
RewriteEngine on
# Uncomment this if mod_rewrites are not working for you. some hosting services have cranky mod_rewrite
# RewriteBase /users/
RewriteRule ^([A-Za-z0-9_]+)$ index.php?home=$1 [L,QSA]
</IfModule>
|