blob: 3bd1bde963474d770486080c908611841cba4313 (
plain)
1
2
3
4
5
6
7
8
9
|
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /pigeonholes/
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME}/index.php -f
RewriteRule ^(.*)$ - [L]
RewriteRule ^(.*)$ index.php?content_id=$1 [L]
</IfModule>
|