-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
58 lines (29 loc) · 1.51 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
RewriteEngine On
RewriteRule ^watch_(.*).html movie_watch.php?id=$1
RewriteRule ^watch_(.*) download.php?op=view&id=$1
RewriteRule ^download_(.*) download.php?id=$1
RewriteRule ^subtitle_download_(.*) download.php?action=subtitle&id=$1
RewriteRule ^movie_([0-9]+)/files.html movie_files.php?id=$1
RewriteRule ^movie_([0-9]+)/subtitles.html movie_subtitles.php?id=$1
RewriteRule ^movie_([0-9]+)/photos.html movie_photos.php?cat=$1
RewriteRule ^movie/photo_([0-9]+).html movie_photos.php?id=$1
RewriteRule ^movie_([0-9]+)/actors.html movie_actors.php?id=$1
RewriteRule ^movie_([0-9]+)/index.html movie_info.php?id=$1
RewriteRule ^movie_([0-9]+)/ movie_info.php?id=$1
RewriteRule ^actor_([0-9]+)/photos.html actor_photos.php?cat=$1
RewriteRule ^actor/photo_([0-9]+).html actor_photos.php?id=$1
RewriteRule ^actor_([0-9]+)/index.html actor_details.php?id=$1
RewriteRule ^actor_([0-9]+)/ actor_details.php?id=$1
RewriteRule ^actors.html actors.php
RewriteRule ^actors_([0-9]+).html actors.php?start=$1
RewriteRule ^cat_(.*)_(.*)_(.*)_(.*).html browse.php?cat=$1&start=$2&orderby=$3&sort=$4
RewriteRule ^cat_(.*).html browse.php?cat=$1
RewriteRule ^browse.html browse.php
RewriteRule ^page_(.*).html index.php?action=pages&id=$1
RewriteRule ^profile_(.*).html profile.php?id=$1
RewriteRule ^news_view_(.*).html news.php?id=$1
RewriteRule ^news_(.*)_(.*).html news.php?cat=$1&start=$2
RewriteRule ^news_(.*).html news.php?cat=$1
RewriteRule ^news.html news.php
RewriteRule ^style.css css.php
RewriteRule ^sitemap.xml sitemap.php