forked from ZwiiCMS-Team/ZwiiCMS
Disable rewrite not apache
This commit is contained in:
parent
02766515c5
commit
f567d7645d
19
.htaccess
19
.htaccess
@ -27,22 +27,11 @@
|
|||||||
# Bloque l'accès à la liste des fichiers
|
# Bloque l'accès à la liste des fichiers
|
||||||
Options -Indexes
|
Options -Indexes
|
||||||
|
|
||||||
|
|
||||||
|
# URL rewriting
|
||||||
|
|
||||||
|
|
||||||
# Désactive l'option de substitution automatique
|
# Désactive l'option de substitution automatique
|
||||||
<IfModule mod_negotiation.c>
|
<IfModule mod_negotiation.c>
|
||||||
Options -MultiViews
|
Options -MultiViews
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# URL rewriting
|
|
||||||
<IfModule mod_rewrite.c>
|
|
||||||
RewriteEngine on
|
|
||||||
RewriteBase /ZwiiCMS/
|
|
||||||
RewriteCond %{REQUEST_FILENAME} !-f
|
|
||||||
RewriteCond %{REQUEST_FILENAME} !-d
|
|
||||||
RewriteRule ^(.*)$ index.php?$1 [L]
|
|
||||||
</IfModule>
|
|
||||||
# URL rewriting
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,9 +42,9 @@
|
|||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="col6">
|
<div class="col6">
|
||||||
<?php echo template::checkbox('configRewrite', true, 'Réécritures URL Apache', [
|
<?php echo template::checkbox('configRewrite', true, 'Apache URL intelligentes', [
|
||||||
'checked' => helper::checkRewrite(),
|
'checked' => helper::checkRewrite(),
|
||||||
'help' => 'Supprime le point d\'interrogation dans les URL, option indisponible sous Nginx',
|
'help' => 'Supprime le point d\'interrogation dans les URL, l\'option est indisponible avec les autres serveurs Web',
|
||||||
'disabled' => strpos($_SERVER["SERVER_SOFTWARE"], 'Apache') > 0 ? true : false
|
'disabled' => strpos($_SERVER["SERVER_SOFTWARE"], 'Apache') > 0 ? true : false
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user