RSSAudioPlayer 1.0

Quick system to play your (currently my) favourite podcast feeds and stuff.
This commit is contained in:
Ismo Vuorinen
2013-07-26 15:33:28 +03:00
parent a49274bea0
commit 9441defd90
17 changed files with 495 additions and 0 deletions

9
.htaccess Normal file
View File

@@ -0,0 +1,9 @@
<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>