Thread Neue Version des Boards (12 answers)
Opened by havi at 2003-11-04 16:22

Strat
 2003-11-11 19:57
#38513 #38513
User since
2003-08-04
5246 Artikel
ModeratorIn
[Homepage] [default_avatar]
hier: das passt zum neuen von http://develop.perl-community.de/install/html.zip
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
NameVirtualHost 192.168.1.2:8084
<VirtualHost 192.168.1.2:8084>
DocumentRoot F:/apacheweb/8084_develop.perl-community.de/html
ScriptAlias /cgi-bin/ "F:/apacheweb/8084_develop.perl-community.de/html/cgi-bin/"
ErrorLog F:/apacheweb/8084_develop.perl-community.de/log/error.log
CustomLog F:/apacheweb/8084_develop.perl-community.de/log/access.log combined

RewriteEngine on
RewriteLog F:/apacheweb/8084_develop.perl-community.de/log/rewrite.log

RewriteRule /overview/ /cgi-bin/board.pl?action=overview
RewriteRule /board/([0-9]+)/(.*) /cgi-bin/board.pl?action=viewboard;boardid=$1;$2
RewriteRule /thread/([0-9]+)/(.*) /cgi-bin/board.pl?action=viewThread;threadid=$1;$2

AccessFileName .htaccess
</VirtualHost>


wenn man das board als mod_perl ausfuehren will, dann .pl mit mod_perl assoziieren und:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
NameVirtualHost 192.168.1.2:8084
<VirtualHost 192.168.1.2:8084>
DocumentRoot F:/apacheweb/8084_develop.perl-community.de/html
ScriptAlias /cgi-bin/ "F:/apacheweb/8084_develop.perl-community.de/html/cgi-bin/"
ErrorLog F:/apacheweb/8084_develop.perl-community.de/log/error.log
CustomLog F:/apacheweb/8084_develop.perl-community.de/log/access.log combined

RewriteEngine on
RewriteLog F:/apacheweb/8084_develop.perl-community.de/log/rewrite.log

RewriteRule /overview/ /cgi-bin/board.pl?action=overview
RewriteRule /board/([0-9]+)/(.*) /cgi-bin/board.pl?action=viewboard;boardid=$1;$2
RewriteRule /thread/([0-9]+)/(.*) /cgi-bin/board.pl?action=viewThread;threadid=$1;$2

PerlRequire f:/apacheweb/8084_develop.perl-community.de/html/cgi-bin/mod_perl_startup.pl

AccessFileName .htaccess
</VirtualHost>
perl -le "s::*erlco'unaty.'.dk':e,y;*kn:ai;penmic;;print"
http://www.fabiani.net/

View full thread Neue Version des Boards