mirror of
https://github.com/ivuorinen/rss-audio-player.git
synced 2026-01-26 11:34:00 +00:00
9 lines
316 B
ApacheConf
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> |