-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
35 lines (18 loc) · 1.13 KB
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
RewriteEngine On
RewriteRule ^song_listen_(.*)_(.*) download.php?op=listen&id=$1&cat=$2
RewriteRule ^song_listen_(.*) download.php?op=listen&id=$1
RewriteRule ^song_download_(.*)_(.*) download.php?id=$1&cat=$2
RewriteRule ^song_download_(.*) download.php?id=$1&cat=1
RewriteRule ^video_watch_(.*) download.php?action=video&op=watch&id=$1
RewriteRule ^video_download_(.*) download.php?action=video&id=$1
RewriteRule ^singer-(.*)-(.*)-(.*)-(.*)-(.*).html index.php?action=songs&id=$1&album_id=$2&orderby=$3&sort=$4&start=$5
RewriteRule ^singer-(.*).html index.php?action=songs&id=$1
RewriteRule ^album-(.*)-(.*).html index.php?action=songs&id=$1&album_id=$2
RewriteRule ^lyrics-(.*).html index.php?action=lyrics&id=$1
RewriteRule ^cat-(.*).html index.php?action=browse&op=cat&id=$1
RewriteRule ^videos-(.*)-(.*).html index.php?action=browse_videos&cat=$1&start=$2
RewriteRule ^videos-(.*).html index.php?action=browse_videos&cat=$1
RewriteRule ^news_(.*)_(.*).html index.php?action=news&date=$1&start=$2
RewriteRule ^news_(.*).html index.php?action=news&id=$1
RewriteRule ^news.html index.php?action=news
RewriteRule ^sitemap.xml sitemap.php