why google isnt indexing our page
why google isnt indexing our page
our page http://www.licht-harmonie.de isnt indexed properly from google.de
when i search for site:www.licht-harmonie.de at google there are only 4 pages indexed. other pages are indexed complete. what am i doing wrong? any ideas?
rush
when i search for site:www.licht-harmonie.de at google there are only 4 pages indexed. other pages are indexed complete. what am i doing wrong? any ideas?
rush
3 (!) Jahre warten reichen mir. Ich bin erst mal weg.
i have resubmitted the page 2 weeks ago.trip wrote:how long ago did you submit?
I have checked your source code, there might be some tags you are missing.... for the SE to pick your site up especially what google wants
nice design
TriP
what tags are missing for google?

rush
3 (!) Jahre warten reichen mir. Ich bin erst mal weg.
Hi rushclub,
please opben the link "http://licht-harmonie.de". Google have show me a blank page.
The forwarding from "/" to "/cms" results an 301? (Haven´t test ist).
I would activate mod_rewrite and place the site at root.
Gruß Knut
please opben the link "http://licht-harmonie.de". Google have show me a blank page.
The forwarding from "/" to "/cms" results an 301? (Haven´t test ist).
I would activate mod_rewrite and place the site at root.
Gruß Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
Hi rushclub,
First move the whole installation to root and adjust path and files/folder settings.
Second enable the mod_rewrite function at the conf.inc.php and htaccess.
IF you have made an relounge of an html-site please use this at the htaccess:All old xxx.htm/xxx.html sides are "Moved Permanently" (301) to your new site.
Gruß Knut
My conception isn´t to use mod_rewite for moving the site to root...... place the site at root
First move the whole installation to root and adjust path and files/folder settings.
Second enable the mod_rewrite function at the conf.inc.php and htaccess.
IF you have made an relounge of an html-site please use this at the htaccess:
Code: Select all
# Redirection of all .htm/html sides
RewriteRule ^(.*)\.htm$ http://www.mydomian.tld [r=301,nc]
RewriteRule ^(.*)\.html$ http://www.mydomian.tld [r=301,nc]
Gruß Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
o.k. thanks a lot. good idea.flip-flop wrote:Hi rushclub,My conception isn´t to use mod_rewite for moving the site to root...... place the site at root
First move the whole installation to root and adjust path and files/folder settings.
Second enable the mod_rewrite function at the conf.inc.php and htaccess.
IF you have made an relounge of an html-site please use this at the htaccess:All old xxx.htm/xxx.html sides are "Moved Permanently" (301) to your new site.Code: Select all
# Redirection of all .htm/html sides RewriteRule ^(.*)\.htm$ http://www.mydomian.tld [r=301,nc] RewriteRule ^(.*)\.html$ http://www.mydomian.tld [r=301,nc]
Gruß Knut
rush

3 (!) Jahre warten reichen mir. Ich bin erst mal weg.
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
found the solution. remove the forwarding created with phpwcms. add an contentpart "html" to the document and insert the code:
as described in the docu. so you havent to add a new template for every redirect. or am i wrong?
rush
Code: Select all
[PHP]
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: index.php?meine_neue_home" );
exit;
[/PHP]
rush
3 (!) Jahre warten reichen mir. Ich bin erst mal weg.
Unfortunately yes.is this the problem with every internal "forwarding" in phpwcms?
Your workaround (Where is it at the docu-page?) is ok.
You get the same result, by manipulating the file "/include/inc_front/content.article.inc.php"
adding at line 92 the green line:
--------------------------------------------------------------
// direct redirection in the same window
header("HTTP/1.1 301 Moved Permanently");
header("Location: ".$content["redirect"]["link"]);
--------------------------------------------------------------
Gruß Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )