Leser: 1
10 Einträge, 1 Seite |
DirectoryIndex /test/index.pl
1
2
3
4
<Directory /Users/*/Sites/cgi-bin>
AllowOverride All
Options +Indexes Includes +ExecCGI
</Directory>
1
2
3
4
5
<Directory /Users/*/Sites/cgi-bin>
DirectoryIndex index.pl
AllowOverride All
Options +Indexes Includes +ExecCGI
</Directory>
1
2
3
RewriteBase /
RewriteRule "^index.html?" /cgi-bin/index.pl [L]
RewriteRule "^$" /cgi-bin/index.pl [L]
GwenDragon+2007-10-26 15:59:55--Code: (dl )1
2
3RewriteBase /
RewriteRule "^index.html?" /cgi-bin/index.pl [L]
RewriteRule "^$" /cgi-bin/index.pl [L]
1
2
3
4
5
6
7
<IfModule mod_rewrite.c>
Options +FollowSymLinks # nicht immer gut
RewriteEngine on
RewriteBase /
RewriteRule ^index\.html /cgi-bin/index.pl [L]
RewriteRule ^(.*)$ /cgi-bin/index.pl?q=$1 [L]
</IfModule>
Lightman+2007-10-26 15:02:43--Hallo,
ich möchte eine index.pl als DirectoryIndex hinzufügen, so dass beim Aufruf von /cgi-bin automatisch nach /cgi-bin/test/index.pl gewechselt wird (oder auch von www.meine-url.de nach www.meine-url.de/cgi-bin/index.pl). Ich habe jetzt eine .htaccess in /cgi-bin mit
Code: (dl )DirectoryIndex /test/index.pl
RewriteRule ^(.*)$ /cgi-bin/index.pl/$1 [L,PT]
10 Einträge, 1 Seite |