Reindirizzamento al vecchio dominio dopo la migrazione
-
-
Ho aggiunto queste righein wp-config.phpe hafunzionato. `define ('WP_SITEURL','https://domain.com'); define ('WP_HOME','https://domain.com'); `I have added these lines in wp-config.php and it worked. `define('WP_SITEURL', 'https://domain.com'); define('WP_HOME', 'https://domain.com');`
- 2
- 2018-06-12
- Vignesh Chinnaiyan
-
Controlla questo collegamento chepotrebbeesserti utile.https://www.phparticles.com/wordpress/replace-old-to-new-url-in-the-wordpress-database/Check this link which might be helpful to you. https://www.phparticles.com/wordpress/replace-old-to-new-url-in-the-wordpress-database/
- 0
- 2020-07-20
- Mr.Happy
-
6 risposta
- voti
-
- 2015-05-07
Ilmioproblema è stato risolto,loposto come rispostain modo che qualcun altropossatrarne vantaggio.
Ilmioproblemaera che
siteurl
ehomeurl
nonerano aggiornati,quindi hoinseritodefine('RELOCATE',true);
nelmioFilewp-config.php
.E dinuovo hoprovato ad accedere al sito web,è andato all'URL correttomatuttoilcss
era sparito. Poi sono andato awp-admin
e anche senzacss
ma ho comunqueprovato ad accederema questa voltami haportato all'URL correttoewith css
manon hoeffettuato l'accesso. Poi dinuovo hotentato di accederee questa volta hoeffettuato l'accesso con successo. Quindi homodificatoentrambigliurls
dasettings
nelpannello di amministrazione.Dopodiché ènecessarioeliminaretuttii file della cache delbrowserpereliminare ognitipo di reindirizzamentopersistente.
Spero che questo aiuti qualcun altro ad affrontare lo stessoproblema.
My issue is resolved, I am posting this as an answer so that someone else can benefit out of it.
My issue was,
siteurl
andhomeurl
were not updated, so I have placeddefine('RELOCATE',true);
in mywp-config.php
file. And again tried to access the website , it gone to the correct url but all thecss
was gone. Then I headed over towp-admin
and it also came with nocss
but still I tried to login but this time it has taken me to the correct url andwith css
login page but didn't logged in. Then Again I have attempted to login and this time I have logged in successfully. Then I have changed both theurls
fromsettings
in the admin panel.After this you must to delete all your browser cache files to delete anny kind of persistant redirection.
Hope this helps someone else dealing with the same problem.
-
Questo hafattoiltruccoperme!That did the trick for me!
- 0
- 2018-11-29
- Avishai
-
Ciao!Mi chiedo dove sitrovineltuofile di configurazione hai aggiunto questo,perché stoprovandoin diversiposti con scarso successo.Hi! I'm wondering whereabouts in your config file you added this, because I'm trying at several places with little success.
- 0
- 2018-12-10
- QuestionerNo27
-
- 2015-08-29
Ho avuto lo stessoproblema (orafunzionabene),ecco cosa hofatto
invece diprovare ad accedere alpannello di amministrazione con yoursite.com/wp-admin hoprovato con yoursite.com/wp-login.phpe mi haportato alpannello di amministrazione delmionuovo sito.Poi ho cambiatoil dominio del sitonelleimpostazionigeneralie orafunzionaperfettamente.
I had the same problem (works fine now), here is what i done
instead of try to access to the admin panel whit yoursite.com/wp-admin i tried with yoursite.com/wp-login.php and it took me to the admin panel of my new site. Then I changed the site domain in general settings and now it works just fine.
-
Grazie,hopotutomodificare leimpostazionie ora lepagineinternefunzionanobene ma la homepagenonfunziona.Ho aggiornatoi permalinknell'URL della homepageThanks, I was able to edit the settings and now the internal pages are working just fine but the home page is not working. I have updated the permalinks n the url for the home page
- 0
- 2019-01-03
- viCky
-
- 2018-04-23
Eseguire quanto segue quando si cambia dominio:
UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'siteurl'; UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'home';
Run the following when you are changing domain:
UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'siteurl'; UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'home';
-
Ma chiaramentenon è abbastanza.Il vecchio dominio sarà ancoramemorizzatoin post,barre laterali,altre opzionie così via ...But it's clearly not enough. The old domain will be still stored in posts, sidebars, other options and so on...
- 0
- 2018-05-25
- Krzysiek Dróżdż
-
- 2017-02-26
Lamodifica del campo wp_options aiuterà unpo ',ma a volte letuepagine,poste plugin useranno riferimenti assoluti aimmaginie altrifile.In questo caso,dovrai aggiornare l'intero database.Poichénonesiste un semplice "sostituiretutto"in phpMyAdmin (ameno chenon si costruisca un'istruzione UPDATEin SQL),èmeglio:
- Eseguiilbackup dell'intero database comefile sql.(Includerei l'opzione DROP TABLE)
- Esporta l'intero database comefile sql (testo)e apriloin uneditor ditesto.(Io uso Notepad ++ )
- Effettua Sostituiscitutto ditutte leistanze del vecchio dominio conilnuovo dominio.(ades. olddomain.com connewdomain.com)
- Salva l'SQL aggiornatoe importalo dinuovoin phpMyAdmin.
Voilà!
Changing wp_options field will help a little, but sometimes your pages, posts and plugins will use absolute references to images and other files. In this case, you'll need to update the entire database. Since there's no easy "replace all" in phpMyAdmin (unless you construct an UPDATE statement in SQL), it's best to:
- Backup your entire database as an sql file. (I would include the DROP TABLE option)
- Export your entire database as a sql (text) file and open it in a text editor. (I use Notepad++)
- Do a Replace All of all instances of your old domain with your new domain. (i.e. olddomain.com with newdomain.com)
- Save the updated SQL and import it back into phpMyAdmin.
Voila!
-
Se questonon risolve completamenteilproblema: 1. Controllaeventuali riferimenti deltuo vecchio dominioin wp-config.php 2. Rinominatemporaneamenteiltuofile .htaccess 3. Spostaretemporaneamente le cartelle deiplug-in di riscrittura dipermalink o di sicurezzaIf this doesn't fully resolve the problem: 1. Check for any references of your old domain in wp-config.php 2. Temporarily rename your .htaccess file 3. Temporarily move any security or permalink rewrite plugin folders
- 0
- 2017-02-26
- Tone Williams
-
Penso che questa sia la soluzionepiù completa.Mi chiedoperché sono laprimapersona a votareI think this is the most comprehensive solution. Wonder why I'm the first person upvoting
- 0
- 2018-07-25
- che-azeh
-
Questa è la soluzionemigliore ... SIDENOTE: Se usi cloudflare,svuota la cachenellatua console cloudflare!This is the best solution... SIDENOTE: If you use cloudflare, clear your cache in your cloudflare console!
- 0
- 2020-05-18
- Evan Parsons
-
- 2016-09-20
Cambia l'URLnelfile del database delle opzioniin phpmyadmin.Indicailtuo collegamento URLeffettivo.Quindi apri lapagina wp-admin..conil link wp-login.php .. Digita latua autenticazione,quindinelleimpostazionigenerali cambia dinuovo la directory URLe accedi al sito web.
Change the URL in option database file in phpmyadmin. Means your actual URL link. Then open wp-admin page..with wp-login.php link.. Type your authentication then in general setting change the URL directory again and access the website.
-
- 2016-10-03
Perespandere solo la risposta di Reezppo,
Apri PHPMyadminneltuo cPanele quindifai clic sulfile wp_optionse poi vedrai una serie di campi chepuoimodificaree vedraiil vecchio URL chepuoi quindimodificaremanualmente conilnuovo URL (in duepunti).Quindi salvaloe torna su yoursite.com/wp-login.phpe dovrebbepermetterti di accedere senza reindirizzare.Ricorda che accederai conil vecchionome utentee password di Wordpress (quello dal sito originale che hai spostato).
To just expand on Reezppo's answer,
Open PHPMyadmin in your cPanel and then click on the wp_options file and then you will see a bunch of fields that you can change and you will see the old url which you can then change manually to the new url (in two places). Then save it and go back to yoursite.com/wp-login.php and it should let you login without redirecting. Remember you will be logging in with the old Wordpress username and password (the one from the original site that you have moved).
Ho spostato uno deimiei siti Webin unnuovo dominio,di seguito è riportato quello che hofatto.
phpmyadmin
Ora,i problemi che sto affrontando sono:
wp-admin
viene anche reindirizzato al vecchio dominio quandoprovo aeseguiremydomain.com/wp-admin
Aiutaci se hai qualcheideain merito,qualsiasi aiuto sarebbemolto apprezzato.