![]() |
|
I can not use mod_rewrite nor tinyUrl - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: I can not use mod_rewrite nor tinyUrl (/thread-13036.html) |
I can not use mod_rewrite nor tinyUrl - RB26 - 2017-10-06 bonjour RewriteCond %{REQUEST_FILENAME} -f [OR] I can not use mod_rewrite nor tinyUrl - acrylian - 2017-10-06 Your htaccess file is not what Zenphoto uses at all. That should look like this. You find the template within There is also an option to enable rewritten urls. If that's all not it, I personally never encountered this on various standard shared hosts. I can not use mod_rewrite nor tinyUrl - RB26 - 2017-10-06 thank you for the answer, she pushed me a little with apache documentation i ended up solving the problem for information, I modified the htacces as: Redirection https NC= no caseRewriteCond %{HTTP_HOST} ^(monsite|www.monsite).fr [NC] Si c'est un dossier ou fichier qui existe on le renvoie sans modificationRewriteCond %{REQUEST_FILENAME} -f [OR] sinon on le renvoie sur index.php avec toute la chaine de la requeteRewriteRule ^.*/?$ index.php [L,QSA] [/code] I can not use mod_rewrite nor tinyUrl - acrylian - 2017-10-06 Great you managed it. We'll planning to go https sometime soon as well so maybe we run into the same issue so we keep in mind. htaccess can really be a beast. |