You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
282 B
15 lines
282 B
11 years ago
|
<IfModule mod_rewrite.c>
|
||
|
RewriteEngine on
|
||
|
{
|
||
|
my $alias = $limesurvey{'AliasOnPrimary'} || 'enabled';
|
||
|
if ($alias ne 'disabled'){
|
||
|
$OUT .= " RewriteBase /limesurvey\n";
|
||
|
}
|
||
|
else{
|
||
|
$OUT .= '';
|
||
|
}
|
||
|
}
|
||
|
RewriteCond %\{REQUEST_FILENAME\} !-f
|
||
|
RewriteRule . index.php
|
||
|
</IfModule>
|