blob: d1c9cae2176cd833300709a45976be3b863c1d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<IfModule mod_rewrite.c>
RewriteEngine on
# Uncomment this if mod_rewrites are not working for you. some hosting services have cranky mod_rewrite
# RewriteBase /tags/
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME}/index.php -f
RewriteRule ^(.*)$ - [L]
RewriteRule ^view/(.*)$ index.php?tags=$1 [L]
RewriteRule ^(.*)$ index.php?tags=$1 [L,QSA]
</IfModule>
|