danyw3b Posted February 24, 2021 Share Posted February 24, 2021 Salve. Devo migrare un sito che gira su Prestashop 1.6.1.10 all'ultima versione. Ho un problema: ho caricato in una nuova cartella, denominata shop, la nuova versione, ma non riesco ad accedervi a causa di .htaccess. Ecco il contenuto dell'attuale .htaccess: RewriteEngine On #created by aruba do not touch this file! #ATTENTION: Remove file index.(php|html|htm) RewriteCond %{REQUEST_URI} !^/negozio RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$ RewriteCond %{REQUEST_URI} !^/\.well-known/cpanel-dcv/[0-9a-zA-Z_-]+$ RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/(?:\ Ballot169)? RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule ^(.*)$ negozio/$1 [L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$ RewriteCond %{REQUEST_URI} !^/\.well-known/cpanel-dcv/[0-9a-zA-Z_-]+$ RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/(?:\ Ballot169)? RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$ RewriteCond %{REQUEST_URI} !^/\.well-known/cpanel-dcv/[0-9a-zA-Z_-]+$ RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/(?:\ Ballot169)? RewriteCond %{REQUEST_URI} !^/\.well-known/pki-validation/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteRule . /index.php [L] </IfModule> # END WordPress il problema è il seguente: con questo file attivo, non riesco a raggiungere la cartella dal browser(www.mionegozio.it/shop) per far partire l'installazione, mentre rinominando il file .htaccess riesco ad accedere al file per poter effettuare installazione ma al contempo poi l'attuale sito non funziona! Non capisco come poter lasciare raggiungibile il sito attuale e poter comunque accedere alla cartella contenente la nuova versione di Prestashop per poter fare installazione. Link to comment Share on other sites More sharing options...
danyw3b Posted February 24, 2021 Author Share Posted February 24, 2021 Ho risolto il problem aggiungendo un'eccezione al fie .htaccess: RewriteRule ^(shop)($|/) - [L] Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now