Reindirizza il sito wordpress di Localhost alla dashboard
-
-
Hai cambiato l'URL del sitoe l'URL della homepage?Did you change site URL and home URL ?
- 0
- 2016-04-23
- Sumit
-
Quandoeseguoiltest/debug di un sito wordpressin locale,imposto l'URL del sitonelfile hostper accedere al sito con lo stesso URL.(il latonegativo è chenonpuoi accedere al sito realementre hai questo recordneltuofile host)When I test/debug a wordpress site locally, I set the site url in my host file to access the site with the same url. (down side is that you can't access the real site while you have this record in your host file)
- 0
- 2016-04-24
- Rabin
-
Sì,cambio l'URL del sitoe l'URL della home ...Yes i change site url and home url...
- 0
- 2016-04-25
- Abdul Ali Khan
-
1 risposta
- voti
-
- 2016-04-24
Sembra cheil sito & amp;gli URL homenon sonoimpostati correttamente.
Puoiimpostarliin wp-admin dalla schermata Impostazioni,anche se sembra chepotrestinonesserein grado di accedervi adesso,quindi una soluzione alternativa èfare quanto segue:
- Modificailtuofile
wp-config.php
- Cercaper vedere se
WP_HOME
oWP_SITEURL
èpresentein questofile - In caso affermativo,modifica l'indirizzoelencatoin
'http://localhost/wordpress/'
Se
WP_HOME
eWP_SITEURL
non sono ancorapresentineltuofilewp-config.php
,aggiungiil seguente codice alfile ( ovunqueprima del commento che dice "questo ètutto,interrompi lamodifica"):define ('WP_HOME','http://localhost/wordpress/'); define ('WP_SITEURL','http://localhost/wordpress/');
Se questo è l'indirizzo correttoin cui haiinstallatoe tutto è stato spostato correttamente,dovrestiessereportato alla schermata di accesso quando visiti http://localhost/wordpress/wp-admin .
<"EDIT:"
Se ancoranonesegueil reindirizzamento,controlliamoiltuofile
.htaccess
. Sono abbastanza sicuro che questonon dovrebbeinfluire sull'accesso a wp-admin,ma dovremmo comunque correggerlo. Apri.htaccess
e cerca la sezione Wordpress simile alla seguente,quindi aggiungiwordpress/
dove lo vedi sotto suRewriteBase
eRewriteRule
righe:# BEGIN WordPress & lt; IfModulemod_rewrite.c > RewriteEngine On RewriteBase/wordpress/ RewriteRule ^index \ .php $ - [L] RewriteCond% {REQUEST_FILENAME}! -F RewriteCond% {REQUEST_FILENAME}! -D RewriteRule./wordpress/index.php [L] & lt;/IfModule > # FINE WordPress
L'aggiornamento delfile
.htaccess
è un altropassaggio che deveessereeseguito quando sposti un sito,manellamaggiorparte dei casiinteresserà soloi tuoipermalinked ègestito semplicementefacendo clic su Salva sul Impostazioni ->pagina Permalinkin wp-admin. Spero che aggiornarlomanualmente orapossa aiutare anchete ...It sounds like the site & home URLs are not set correctly.
You can set these in wp-admin from the Settings screen, although it sounds like you may not be able to get in there right now, so a workaround is to do the following:
- Edit your
wp-config.php
file - Search to see if
WP_HOME
orWP_SITEURL
is present in this file - If they are, change the address listed to
'http://localhost/wordpress/'
If
WP_HOME
andWP_SITEURL
aren't present in yourwp-config.php
file yet, add the following code to the file (anywhere before the comment that says 'that's all, stop editing'):define('WP_HOME', 'http://localhost/wordpress/'); define('WP_SITEURL', 'http://localhost/wordpress/');
If this is the correct address you've installed at, and everything has been moved across correctly, you should then be taken to your login screen when you visit http://localhost/wordpress/wp-admin.
EDIT:
If it's still not redirecting, let's check your
.htaccess
file. I'm fairly sure this shouldn't be impacting the log-in to wp-admin, but we should correct it nevertheless. Open.htaccess
and look for the Wordpress section similar to the below, and addwordpress/
where you see it below on theRewriteBase
andRewriteRule
lines:# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wordpress/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wordpress/index.php [L] </IfModule> # END WordPress
Updating the
.htaccess
file is another step that needs to be taken when you move a site, but in most cases it will only affect your Permalinks and is taken care of just by clicking Save on the Settings -> Permalink page in wp-admin. Hopefully updating it manually now might help you too...-
Sì,mi sposto correttamente Spostatutte le cose su localhost ..Yes I move Correctly Move All things to localhost..
- 0
- 2016-04-25
- Abdul Ali Khan
-
define ('WP_HOME','http://localhost/wordpress/'); define ('WP_SITEURL','http://localhost/wordpress/');e anche questononfunziona ...define('WP_HOME', 'http://localhost/wordpress/'); define('WP_SITEURL', 'http://localhost/wordpress/'); and this is also not working....
- 0
- 2016-04-25
- Abdul Ali Khan
-
Quando dici "nonfunziona",vuoi dire che stai riscontrando lo stessoproblema conil reindirizzamento a http://localhost/dashboard/quandoprovi a visitare http://localhost/wordpress/wp-admin?When you say 'not working', do you mean you are getting the same issue with it redirecting to http://localhost/dashboard/ when you try to visit http://localhost/wordpress/wp-admin ?
- 0
- 2016-04-25
- Tim Malone
-
Sì,ho lo stessoproblema.Yes i getting same issue.
- 0
- 2016-04-25
- Abdul Ali Khan
-
Cosa c'èneltuofile `.htaccess`?What's in your `.htaccess` file?
- 0
- 2016-04-25
- Tim Malone
-
Nelfile .htaccess, # INIZIA WordPress
RewriteEngine On RewriteBase/ RewriteRule ^index \ .php $ - [L] RewriteCond% {REQUEST_FILENAME}! -F RewriteCond% {REQUEST_FILENAME}! -D RewriteRule./index.php [L] # FINE WordPress In .htaccess file, # BEGIN WordPressRewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress- 0
- 2016-04-26
- Abdul Ali Khan
-
Hmm vabene.Ho aggiunto alcuneistruzioniper l'aggiornamento di `.htaccess` alpost sopra,fammi sapere come va.Hmm ok. I've added some instructions for updating `.htaccess` to the post above, let me know how that goes.
- 0
- 2016-04-26
- Tim Malone
-
Sìì!Sono contento che siamo arrivati :) Pls accetta la domanda se hafunzionatoperte :)Yay! Glad we got there :) Pls accept the question if it worked for you :)
- 0
- 2016-04-26
- Tim Malone
-
come accetto la domandahow to i accept question
- 0
- 2016-04-26
- Abdul Ali Khan
-
Ops scusa volevo dire accettare la risposta.A sinistra dellamia risposta dovrebbeesserci un segno di spunta chepuoipremere.Aiuta amostrare agli altri cosa hafunzionatoe mi dà anche alcunipunti;)Oops sorry I meant accept the answer. On the left of my answer there should be a tick that you can press. Helps show others what worked, and gives me some points too ;)
- 0
- 2016-04-26
- Tim Malone
Caricoil sito Web Wordpress dal server all'host locale quando apro http://localhost/wordpress/wp-admin reindirizza ame http://localhost/dashboard/