Files
rss-audio-player/.htaccess
Ismo Vuorinen 9441defd90 RSSAudioPlayer 1.0
Quick system to play your (currently my) favourite podcast feeds and stuff.
2013-07-26 15:33:28 +03:00

9 lines
316 B
ApacheConf

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /rss-audio-player/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]*)$ ./index.php [QSA]
RewriteRule ^list/([^/]*)$ ./index.php?page=list [QSA]
RewriteRule ^show/([^/]*)$ ./index.php?page=show&feed=$1 [QSA,L]
</IfModule>