Browse code

Import from the old rivettracker git repository at sourceforge (amisaph/amisapphire branch)

Clarissa Walker (ami-sapphire) authored on 2014/01/24 14:02:23
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,37 @@
1
+This is for Apache users to utilize the given .htaccess file in RivetTracker.
2
+
3
+[1] Make sure you have the mod_rewrite module enabled.
4
+[2] For /local/path/to/rivettracker, change this to your absolute local path
5
+    to your RivetTracker install.
6
+    [a] Unix servers: /local/path/to/rivettracker
7
+    [b] Windows servers: <drive letter>:\local\path\to\rivettracker
8
+
9
+
10
+For Apache 2.0.x and 2.2.x installs, put this in your httpd.conf file:
11
+
12
+<Directory "/local/path/to/rivettracker">
13
+Options -Indexes +FollowSymLinks
14
+RewriteEngine On
15
+AllowOverride All
16
+Order allow,deny
17
+Allow from all
18
+</Directory>
19
+
20
+
21
+For Apache 2.4.x installs, put this in your httpd.conf file:
22
+
23
+<Directory "/local/path/to/rivettracker">
24
+Options -Indexes +FollowSymLinks
25
+RewriteEngine On
26
+AllowOverride All
27
+Require all granted
28
+</Directory>
29
+
30
+
31
+You could also change AllowOverride None to AllowOverride All in the main
32
+httpd.conf and uncomment the first two lines in the htaccess file, but that
33
+also searches for .htaccess in all other subdirectories as well.
34
+
35
+
36
+For nginx users, it turns out to be a bit different. Read this:
37
+http://wiki.nginx.org/HttpRewriteModule
0 38
\ No newline at end of file