How to Make HTML Pages Work Like Wordpress Come fare pagine HTML lavoro come Wordpress
June 7th, 2007 · by David Bradley 7 giugno 2007 da David Bradley
Do you have a bunch of standard html pages outside your Wordpress blog heirarchy? Avete un mucchio di pagine HTML standard al di fuori del suo blog Wordpress struttura gerarchica? I’m not taking about Wordpress’ static “Pages” with a capital P, but those pages, perhaps in the root beyond the CMS facility of Wordpress. Non sto prendendo su di Wordpress' statica "Pagine" con un capitale di P, ma quelle pagine, forse nella root al di là del CMS struttura di Wordpress. Well, there is a relatively simple way to convert a standard html page into a kind of Wordpress page, so that your header, sidebar, and footer all render as if the page were a standard Wordpress page. Ebbene, vi è un modo relativamente semplice per convertire una pagina HTML standard in una sorta di Wordpress pagina, in modo che la propria intestazione, barra laterale, e rendere tutti i piè di pagina, come se la pagina fosse una pagina standard di Wordpress.
1. First, make a back up of any pages you plan to change, then add this line to the head section of each page you want to re-theme within the Wordpress system on your site. In primo luogo, fare una copia di backup di tutte le pagine hai intenzione di modificare, aggiungere questa riga al capo sezione di ogni pagina che si desidera ri-tema all'interno del sistema di Wordpress sul tuo sito.
<?php define(’WP_USE_THEMES’, false); require(’./your-wordpress-folder/wp-blog-header.php’); ?> <? php define ( 'WP_USE_THEMES', false); richiedono ( '. / tuo-wordpress-cartella / wp-blog-header.php');?>
That calls in the necessary code from the Wordpress folder (obviously change “your-wordpress-folder” to the actual directory name). Chiede che nel caso del codice della cartella di Wordpress (ovviamente il cambiamento "-il tuo wordpress-cartella" alla directory reale, nome).
2. Next, decide which components you’re going to need for the page. Avanti, decidere quali componenti che si vuole bisogno per la pagina. You’ll probably want the header from your theme so add Probabilmente si desidera l'intestazione di vostro tema così aggiungere
<?php get_header(); ?> <? php get_header ();?>
Put that near the top after the body tag. Metti che trovi in alto dopo il tag BODY.
3. You’ve probably got a footer in your theme too, so add this to the bottom of the page before the close body tag Probabilmente hai avuto un piè di pagina nel tuo tema troppo, quindi aggiungere questo a fondo pagina prima della chiusura tag BODY
<?php get_footer(); ?> <? php get_footer ();?>
4. Then comes a tricky bit. Poi giunge un po 'difficile. Where to put the sidebar? Dove mettere la barra laterale? It depends. Dipende. Try it just before the footer tag you added in the previous step first. Provalo subito prima etichetta il piè di pagina che avete aggiunto nel passaggio precedente. We can come back later and move it if it doesn’t work properly. Siamo in grado di tornare più tardi e spostarla se non funzionare correttamente.
<?php get_sidebar(); ?> <? php get_sidebar ();?>
5. Now, smart readers will have noticed you’ve probably been adding a load of php tags to pages with an htm or an html and that opening these in your browser is just going to display the code without running it. Adesso, smart lettori avranno notato che probabilmente sono stato l'aggiunta di un carico di tag php a pagine con un htm o html e uno che in apertura di questi browser è solo andare a visualizzare il codice senza correre. So, there’s one final critical step you must take before things will work as planned. Quindi, c'è un ultimo passo critico è necessario prima di prendere le cose funzionano come previsto. Open up your .htaccess file (you know where that is I take it, root folder, no filename just the extension htaccess (don’t forget the dot). Make a backup copy. Then add the following line: Aprire il tuo. Htaccess file (sapete, quando ciò sia io lo prendo, cartella principale, non solo il nome del file l'estensione htaccess (non dimenticare il punto). Effettuare una copia di backup. Quindi aggiungere la seguente riga:
AddHandler application/x-httpd-php .php .html .htm AddHandler application / x-httpd-php. Php. Html. Htm
and save the .htaccess file. e salvare il file. htaccess file. This will then allow the browser to parse the php in pages with the htm and html extensions as well as the php extension. Questo permetterà al browser di analizzare le pagine in php con il htm e html e php come estensione.
Couple of things to watch out for: if you cut and paste the above code, ensure the quotes are single straight quote marks and the angle brackets are proper code not greater and less than signs. Paio di cose da cui fare attenzione: se si taglia e incolla il codice sopra, garantire le virgolette singole dritto citazione marchi e le parentesi angolari sono proprio codice non più e meno di segni.
Also, make sure you double check the resulting meta tags for these pages, it might result in losing Inoltre, assicurarsi di verificare la conseguente meta tag di queste pagine, potrebbe portare a perdere RSS autodiscovery RSS autorilevamento or changes in your carefully honed title tags. o modifiche nella vostra attenzione honed tag titolo. Also, you generally will not be able to enable comments on these pages as you might do with a static Page within Wordpress proper. Inoltre, è generalmente non sarà in grado di attivare i commenti su queste pagine come si potrebbe fare con un statica Page all'interno di Wordpress corretto. If anyone knows how to workaround the comments disabled default for this kind of page, please leave a comment. Se qualcuno sa come soluzione ai commenti disattivato di default per questo tipo di pagina, si prega di lasciare un commento. I’d love to enable comments across the whole of the Sciencebase.com site on which I make extensive use of this format. Mi piacerebbe attivare i commenti in tutto il Sciencebase.com sito su cui fare ampio uso di questo formato.
Related Posts Posti connessi
- How to Make HTML Pages Work Like Wordpress Come fare pagine HTML lavoro come Wordpress
- Wordpress Blank Pages Wordpress Pagine Bianche
- Your Favorites Revealed Rivelato i tuoi preferiti
- Blogger to Hosted Wordpress Blogger per Wordpress Hosted
- Newbie Wordpress Upgraders Watch Out Newbie wordpress Upgraders Attenzione


















34 responses so far ↓ 34 risposte finora ↓
Ben Ben // / / Jun 7, 2007 at 4:16 pm Jun 7, 2007 at 4:16 pm
Why not just convert all your legacy pages (with a little p) into static pages within the Wordpress system and then relocate the subfolder to the site’s root? Perché non solo convertire tutti i vostri eredità pagine (con un po 'p) in pagine statiche all'interno del sistema di Wordpress e poi riposizionare l'sottocartella per il sito di root? Job done. Lavoro svolto.
David Bradley David Bradley // / / Jun 7, 2007 at 4:18 pm Jun 7, 2007 at 4:18 pm
That would be one way of doing things, Ben, but what if you have thousands of pages in standard html, that’s an awful lot of cutting and pasting. Questo sarebbe un modo di fare le cose, Ben, ma quello che se si dispone di migliaia di pagine in HTML standard, che è moltissimo di tagliare e incollare. Also, there might be reasons why you want to keep the blog part in its own folder and have standalone chunks in the root. Inoltre, ci possono essere motivi per cui si desidera mantenere il blog in parte la sua cartella e hanno standalone blocchi nella root.
deb Deb // / / Jan 15, 2008 at 2:02 am Jan 15, 2008, 2:02 am
I’m having a problem doing the opposite of what you instructed. Sto avendo un problema facendo il contrario di ciò che lei ha incaricato. I want to add a bunch of html pages on the root of my directory and having a hard time. Voglio aggiungere un mucchio di pagine html nella directory principale del mio elenco e di avere un tempo difficile.
I would like a thankyou, about, seemore, page etc, and It keeps calling my 404 page. Desidero una grazie, circa, Seemore, ecc pagina, e si continua a chiamare la mia pagina 404. how do I stop it? come faccio a fermarla?
Thanks.l
David Bradley David Bradley // / / Jan 15, 2008 at 7:16 am Jan 15, 2008, 7:16 am
Deb, do you mean you are trying to create static pages in Wordpress called from the homepage, or are you making standalone pages but don’t want to have them use the WP template? Deb, cosa significa che si sta tentando di creare pagine statiche in WordPress chiamato dalla home page, o stai facendo standalone pagine, ma non vogliono avere il loro uso WP modello? Please clarify and someone here might be able to assist. Si prega di chiarire e qui qualcuno potrebbe essere in grado di aiutarti.
First thought, did you double check the links you’re using? Primo pensiero, ha fatto si fa doppio controllare i link che si sta utilizzando?
db PB
deb Deb // / / Jan 17, 2008 at 6:57 am Jan 17, 2008, 6:57 am
What i want to do is create standalone pages. Quello che voglio fare è creare pagine standalone. that don’t call the template. che non richiedono il modello. I want a thankyou.html page for example. Voglio una pagina thankyou.html per esempio. And I can’t seem to get it working. E Non riesco a farlo funzionare. it keeps calling the the template. mantiene chiamando il modello.
Also, I’ve created a folder called thankyou right at the root of the domain. Inoltre, ho creato una cartella chiamata grazie a destra a la radice del dominio. added a page in it called index.html and the darn thing still calls the wp template. aggiunto una pagina in esso chiamato index.html e la cosa darn chiede ancora il modello wp. I am totally baffled. Io sono totalmente perplesso.
Please help. Please help.
David Bradley David Bradley // / / Jan 17, 2008 at 7:31 am Jan 17, 2008, 7:31 am
Deb, that is very odd. Deb, che è molto strano. If you are creating the pages within Wordpress then that’s bound to happen, but if you are simply creating a standard html page and then uploading it to the root then make sure you haven’t added the includes for WP. Se si sta creando le pagine all'interno di Wordpress che è quindi tenuta a succedere, ma se si sono semplicemente creando una pagina HTML standard e poi caricarlo nella directory principale quindi assicurarsi di aver aggiunto non comprende per il WP. Could you either email the source code for the troublesome pages or point me to those pages and I’ll take a look. Potrebbe o e-mail il codice sorgente per il fastidioso pagine o punto di me a quelle pagine e I'll dare un'occhiata.
db PB
deb Deb // / / Jan 18, 2008 at 3:37 am Jan 18, 2008, 3:37 am
Thanks DB, Grazie PB,
You are right. Hai ragione. That’s exactly what im trying to do. Che è esattamente ciò che im cercando di fare. However, i just can’t get the darn thing to work. Tuttavia, ho appena non si possono ottenere la cosa darn al lavoro.
I am really frustrated at this point so im gonna go and hire some help. Io sono veramente frustrato a questo punto in modo im gonna e noleggio di andare un po 'di aiuto. A sista can’t be waisting three days trying to figure out this techie stuff Un sista non può essere waisting tre giorni cercando di capire questa roba techie
Thanks for all your help though. Grazie per tutte se il vostro aiuto.
DG
TATHAGAT TATHAGAT // / / Feb 2, 2008 at 8:26 am Feb 2, 2008, 8:26 am
please send the process of making html page si prega di inviare la procedura di creazione di pagina html
David Bradley David Bradley // / / Feb 2, 2008 at 9:29 am Feb 2, 2008, 9:29 am
Send it where Tathagat? Invia dove Tathagat? It’s right here. E 'proprio qui. On the page Sulla pagina
db PB
Ariela Ariela // / / Mar 6, 2008 at 10:01 pm Mar 6, 2008, 10:01 pm
Hey, Ehi,
I think I followed your directions exactly, but nothing is showing up on the page. Credo di seguito le vostre indicazioni esattamente, ma nulla è visualizzato sulla pagina.
Ariela
David Bradley David Bradley // / / Mar 7, 2008 at 7:40 am Mar 7, 2008, 7:40 am
Ariela, what is the file extension for the page? Ariela, qual è l'estensione del file per la pagina? If it’s not “.php” (could be .htm, .html instead), do you have those file extensions set to be read as php by your server? Se non è ". Php" (si potrebbe essere. Htm,. Invece html), avete quelle estensioni di file impostato per essere letta come php dal server?
to do that, you need this line in your .htaccess file: di farlo, avete bisogno di questa riga nel file. htaccess file:
AddHandler application/x-httpd-php .php .html .htm AddHandler application / x-httpd-php. Php. Html. Htm
db PB
Ariela Ariela // / / Mar 7, 2008 at 7:50 am Mar 7, 2008, 7:50 am
Thanks for getting back to me so fast… Grazie per tornare a me così veloce…
The file extension was .php, but I ended up going in a different direction — I’m building a theme to apply to the blog that looks just like my webpage. L'estensione del file è stato. Php, ma ho finito per andare in un'altra direzione - sto costruendo un tema di applicare al blog che sembra proprio come la mia pagina web.
Thanks, though! Grazie, anche se!
David Bradley David Bradley // / / Mar 7, 2008 at 10:44 am Mar 7, 2008 a 10:44
Ah, okay, wonder why it failed then…caching perhaps? Ah, okay, chiedo perché non è riuscito poi… il caching forse? Let us know how you get on. Farci sapere come si ottiene.
You’ve got some lovely photos on your site by the way! Hai avuto qualche bella foto sul suo sito a proposito! You may care to check out my public È possibile che la cura di verificare il mio pubblico flickr gallery Flickr Gallery
db PB
Ariela Ariela // / / Mar 8, 2008 at 8:17 am Mar 8, 2008, 8:17 am
Hey, so I ended up building a theme that looked like my web page and everything worked, but I came across another problem, and am hoping that you have an answer. Hey, così ho finito per la costruzione di un tema che sembrava la mia pagina web e funziona tutto, ma mi sono imbattuto in un altro problema, e sono sperando di avere una risposta. The one thing that’s not working is that the images aren’t showing up — they’re little blue diamonds with the question marks. L'unica cosa che non funziona è che le immagini non compaiono - sono poco diamanti blu con la questione marchi. I checked and double checked all the image paths. Ho verificato e controllato a doppio tutti i percorsi di immagine. They are all, by the way, in the header.php and the footer.php. Sono tutti, a proposito, nel header.php e la footer.php. Any idea what I did wrong? Qualche idea di cosa ho fatto di sbagliato?
Thanks! Grazie! (and thanks for the compliments on the photos — I’ll let the photographer know!) (e grazie per i complimenti sulle foto - I'll lasciare che il fotografo sa!)
Scott Scott // / / Apr 14, 2008 at 6:00 am Apr 14, 2008, 6:00 am
That is brilliant. Che è brillante. Technical, but brilliant. Tecnica, ma brillante. I moved from HTML to WP a year ago and had a bunch of pages I just copied over cause I was too lazy to convert them. Mi sono trasferito da HTML a WP un anno fa e ha avuto un mucchio di pagine ho appena copiato causare ero troppo pigro per convertire.
I am definitely bookmarking this page. Io sono sicuramente un segnalibro a questa pagina. Thanks! Grazie!
Minnesota Investment Property’s last blog post.. Minnesota per gli investimenti di riferimento l'ultimo post sul blog .. Stupid Property Repairs #3 Stupido riparazione di riferimento # 3
Luke // Luca / / Apr 23, 2008 at 3:55 am Apr 23, 2008, 3:55 am
David,
When I tried this, I got the following: Quando ho provato questo, ho avuto il seguente:
Parse error: syntax error, unexpected ‘?’ in /xxxx/xxxx on line 159 Errore di analisi: errore di sintassi, inatteso '?' In / xxxx / xxxx on line 159
I know next to nothing about php, so I copied and pasted exactly what you typed, with the proper ‘ and . So accanto a nulla php, quindi ho copiato e incollato esattamente ciò che hai digitato, con il buon 'e.
Any ideas as to what I’m doing wrong? Qualsiasi idea di ciò che sto facendo di sbagliato?
David Bradley David Bradley // / / Apr 23, 2008 at 7:43 am Apr 23, 2008, 7:43 am
Luke, you checked the single quote marks, did you check the angle brackets? Luca, hai selezionato la sola offerta di marchi, hai controllare l'angolo tra parentesi?
db PB
Luke // Luca / / Apr 23, 2008 at 4:57 pm Apr 23, 2008, 4:57 pm
David,
I checked those as well. Ho verificato anche quelli. I included the angle brackets in my previous post, but they must have been cut out. Ho incluso l'angolo tra parentesi nel mio precedente post, ma devono essere stati tagliati fuori.
I just sent you an email with more specific information. Ho appena inviato una e-mail con informazioni più specifiche.
Luke Luca
David Bradley David Bradley // / / Apr 23, 2008 at 5:09 pm Apr 23, 2008, 5:09 pm
Thanks for the follow-up. Grazie per il follow-up. You explained in an email that you’re creating a standalone page you want to theme as if it were part of your blog, but your Wordpress blog is actually in the root of your domain, so there is actually no need to use my workaround. Lei ha spiegato in un messaggio email che si sta creando un pagina standalone si desidera tema come se fosse parte del tuo blog, Wordpress, ma il tuo blog è effettivamente nella root del vostro dominio, quindi, non c'è alcun bisogno di usare la mia soluzione.
Simply create a “Page” with the content you sent me, tweak the permalink and everything should be fine. Semplicemente creare una "pagina" con il contenuto tu mi hai mandato, affinare i permalink e tutto dovrebbe essere bene.
If you really must do it this way then try the code without the period before the slash, and if that doesn’t work remove the slash too. Se davvero si deve fare in questo modo quindi provare il codice senza il periodo che precede la barra, e se questo non funziona rimuovere la barra troppo.
Let us know how you get on. Farci sapere come si ottiene.
db PB
Bob O'Haver Bob O'Haver // / / May 16, 2008 at 6:29 pm 16 maggio 2008, 6:29 pm
I have a site that I need to add the current post to the top of a HTML page. Ho un sito che ho bisogno di aggiungere il post corrente nella parte superiore di una pagina HTML. Will this work for that? Sarà per questo lavoro?
What is the code just to bring in the current post? Che cosa è il codice solo per portare nel post corrente?
Thanks Grazie
David Bradley David Bradley // / / May 16, 2008 at 6:44 pm 16 maggio 2008, 6:44 pm
Bob, that should work with this code. Bob, che dovrebbe funzionare con questo codice. You’d need to add the Wordpress loop (see the main index file in your template) and set it to display just one post. Che ci si deve aggiungere il ciclo di Wordpress (vedi il file di indice principale nel modello) e impostare per visualizzare un solo post.
db PB
Kimberley Kimberley // / / May 18, 2008 at 8:27 pm 18 maggio 2008, 8:27 pm
David,
Im getting the same similar error that Luke reported. Nel mese di ottenere lo stesso errore simile che Luca segnalati.
I know that you said the following: “Couple of things to watch out for: if you cut and paste the above code, ensure the quotes are single straight quote marks and the angle brackets are proper code not greater and less than signs.” So che lei ha detto la seguente: "Coppia di cose da cui fare attenzione: se si taglia e incolla il codice sopra, garantire le virgolette singole dritto citazione marchi e le parentesi angolari sono proprio codice non più e meno di segni".
But I dont see any quote marks or greater/less than signs to correct. Ma io non vedere nessuna citazione marchi o più / meno di segni di correzione.
Any ideas? Tutte le idee?
David Bradley David Bradley // / / May 19, 2008 at 8:31 am 19 maggio 2008, 8:31 am
Kimberley, they’re right there up above… Kimberley, sono proprio lì in alto…
You have to add this to the source of your page: È necessario aggiungere a questo la fonte della vostra pagina:
< ?php define('WP_USE_THEMES', false); require('./your-wordpress-folder/wp-blog-header.php'); ?> <? Php define ( 'WP_USE_THEMES', false); richiedono ( '. / Tuo-wordpress-cartella / wp-blog-header.php');?>
You are on an Apache system, yes? Siete su un sistema di Apache, sì?
db PB
Kimberley Kimberley // / / May 20, 2008 at 1:45 am 20 maggio 2008, 1:45 am
Okay, I went back tonight to look at the code and my ‘ were slanted… So fixed that. Va bene, sono tornato stasera a guardare il mio codice e 'inclinato… sono stati così fissata. Im not sure it did anything. Im non è sicuro ha fatto nulla. Im not getting the Parse error: syntax error, unexpected ‘?’ in /xxxx/xxxx on line 159 error anymore. Im che non ottiene il Errore di analisi: errore di sintassi, inatteso '?' In / xxxx / xxxx on line 159 errore più. What’s happening is that the page sort of loads itself, but the images disappear. Che cosa sta succedendo è che la pagina carichi sorta di se stessa, ma le immagini scompaiono. The link is: Il link è:
http://www.dreamsofmidnight.com/DreamsWeDreampt/index-new.html
[ Yes I know "Dreampt" is spelled wrong. [Sì so "Dreampt" è scritto sbagliato. Just a test folder. Solo una cartella di prova. =) ] =)]
David Bradley David Bradley // / / May 20, 2008 at 7:45 am 20 maggio 2008, 7:45 am
Hi Kimberley and thanks for your 3 attempts and an email. Hi di Kimberley e grazie per il vostro 3 tentativi e una e-mail. All got through. Tutti i arrivato. Your comments did “stick” it’s just it was night here so I wasn’t at my computer to approve them. I vostri commenti ha fatto "bastone" è solo che qui è stata notte così non ero al mio computer per approvarle. You should’ve seen a message, however, to say that comments require approval so apologies if that wasn’t apparent. Si dovrebbe aver visto un messaggio, però, devo dire che i commenti richiedono l'approvazione in modo che le scuse se non è stata evidente.
db PB
David Bradley David Bradley // / / May 20, 2008 at 7:47 am 20 maggio 2008, 7:47 am
Kimberley (again) - I mentioned in the post that readers should check that quotes are straight and angle brackets working as html rather than being converted. Kimberley (di nuovo) - ho menzionato nel post che i lettori dovrebbe verificare che le virgolette sono dritti e parentesi angolari di lavoro come HTML invece di essere convertiti. But, I did take a look at your code and the javascript for rendering your images is pointing to “http://127.0.0.1:1025/js.cgi?pa&r=2401″ that’sa local (ie your machine) rather than the server, so that’s why they’re not showing up because the script needs to be in your root on the site server. Ma, mi ha fatto dare un'occhiata al codice e il Javascript per rendere le tue immagini punta a "http://127.0.0.1:1025/js.cgi?pa&r=2401" che sono locali (vale a dire la vostra macchina) piuttosto che il server, in modo tale che è il motivo per cui non sono visualizzati perché lo script deve essere nella vostra root sul server del sito.
That said, what benefits are there to serving images via a script, why not make them absolute and then there’s last chance of things breaking, especially for users running NoScript in their browser! Detto questo, ciò che vantaggi ci sono al servizio di immagini tramite uno script, perché non renderli assoluto e poi c'è l'ultima occasione di spezzare le cose, soprattutto per gli utenti eseguono NoScript nel loro browser!
db PB
Kimberley Kimberley // / / May 21, 2008 at 4:09 am 21 maggio 2008, 4:09 am
I apologize for all the emails. Mi scuso per tutti i messaggi di posta elettronica. I must look like a complete moron. Devo sembrare un completo moron. However, there was no message showing up on the site, that’s why I thought they weren’t getting through. Tuttavia, non vi era alcun messaggio visualizzato sul sito, che è il motivo per cui ho pensato che non sono stati sempre attraverso. Sorry about that. Ci scusiamo per l'inconveniente.
I’ll check what you mentioned. I'll verificare ciò che lei ha citato. And get back to you. E ti.
David Bradley David Bradley // / / May 21, 2008 at 7:50 am 21 maggio 2008, 7:50 am
I just did a test comment post Kimberley and once a message has been submitted you should’ve seen a little notice saying it would appear once moderated and now offering you the option to subscribe to the newsfeed. Ho appena fatto una prova di commento post di Kimberley e una volta un messaggio è stato presentato si dovrebbe aver visto un po 'di preavviso dicendo sembrerebbe una volta moderato e ora vi offre la possibilità di sottoscrivere la newsfeed.
db PB
Sarah Sarah // / / Jun 18, 2008 at 4:12 pm Giugno 18, 2008, 4:12 pm
Hi David, Ciao Davide,
We have a problem when trying to add the .html extension to WP Pages (with a cap P). Abbiamo un problema quando si cerca di aggiungere l'. Html al WP Pagine (con un massimale P). Do you know if this is possible and how to go about this? Sapete se questo è possibile e come fare?
Thanks Grazie
Sarah
David Bradley David Bradley // / / Jun 18, 2008 at 5:47 pm Giugno 18, 2008, 5:47 pm
Sarah, I am pretty sure there is a workaround, but I’ve not yet implemented it and have been persuaded that there is little point as most users are blind to file extensions in URLs these days. Sarah, sono abbastanza sicuro che non ci sia una soluzione, ma non ho ancora attuato e sono stati convinti che c'è poco punto come la maggior parte degli utenti non vedenti di estensioni di file URL in questi giorni. There may, just may, be SEO benefits to having the .html, but I’m not sure what those would be. Vi possono solo può, essere SEO vantaggi ad avere il. Html, ma io non sono sicuro di quello che sarebbe quelli.
Have you searched the wordpress forums for an answer? Hai cercato il wordpress forum per una risposta?
Sarah Sarah // / / Jun 18, 2008 at 6:35 pm Giugno 18, 2008, 6:35 pm
Yes, but it seems to be nigh on impossible and not recommended as it involves fiddling with the source code and course there’s future updates to consider. Sì, ma sembra quasi impossibile e non è raccomandato in quanto comporta fiddling con il codice sorgente e ovviamente c'è aggiornamenti futuri da prendere in considerazione. Nonetheless, if there was a workable solution I would consider it, if only for the benefit of SEO considerations - but again as you say, what are the benefits there? Tuttavia, se vi è stata una soluzione Riterrei, se solo a beneficio di considerazioni di SEO - ma, ancora una volta come lei dice, quali sono i vantaggi?
David Bradley David Bradley // / / Jun 18, 2008 at 7:15 pm Giugno 18, 2008, 7:15 pm
Actually, there may be hidden SEO benefits to having a few Pages on a site that look to all intents and purposes as if they are actually folder structures rather than individual files, I’m thinking In realtà, non vi può essere nascosta SEO vantaggi ad avere poche pagine su un sito che guardano a tutti gli effetti come se fossero effettivamente cartella strutture piuttosto che singoli file, sto pensando Google Site Links Google Site Links
Data Dati // / / Jun 27, 2008 at 9:15 pm Giu 27, 2008, 9:15 pm
I’m finding way to make these structure, if possible :- Sto trovando modo per rendere queste struttura, se possibile: --
Eg -> Ad esempio ->
Page structure like this :- Page struttura simile a questo: --
domaincom/page1.html
domaincom/page2.html
and Blog Post like this ( as choosing the /%postname%/ for permanent link structure ) :- Blog Post e come questo (come la scelta del /% postname% / permanente per la struttura di link): --
domaincom/myblogpost/ domaincom / myblogpost /
domaincom/myblogpost2/ domaincom/myblogpost2 /
…and so on. … E così via.
Would these be possible ? Questi sarebbe possibile?
Thanks for your kind help if there is solution. Grazie per il vostro gentile aiuto se non vi è soluzione.
Datas last blog post.. Dati ultimo post sul blog .. Computer System Computer System
David Bradley David Bradley // / / Jun 29, 2008 at 8:19 pm Jun 29, 2008, 8:19 pm
Data, check out the Wordpress FAQ and forums for assistance on permalinks. Dati, consulta la FAQ Wordpress e forum di assistenza in permalinks.
Leave a Comment Lascia un commento