Mobile app version of vmapp.org
Login or Join
Rivera981

: I have “CMS” made by myself with PHP and I cannot make my websites appear on google I have developed an Admin Panel that you can use to change conents on the website. It works basically

@Rivera981

Posted in: #Cms #Php

I have developed an Admin Panel that you can use to change conents on the website.

It works basically like this:

You use functions to generate HTML like menus, footers, side modules, etc.
I use classes to load the content from MySQL
The back end is just some administrative pages that shows you an WYSIWYG editor and that's what you save as content and that's what is is going to appear in the website.

I have functions like this in the HTML generator:

public static function renderHead(
$title = "",
$keywords = META_KEYWORDS,
$description = META_DESCRIPTION,
$css = array(),
$scripts = array()
) {
?>
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="../css/style.css"/>
<link rel="stylesheet" type="text/css" href="../css/fancybox.css"/>
<link rel="stylesheet" type="text/css" href="../css/nivo-themes/nivo-slider.css"/>
<link rel="stylesheet" type="text/css" href="../css/nivo-themes/default/default.css"/>
<?php
foreach($css as $var) {
?>
<link rel="stylesheet" type="text/css" href="<?php echo $var; ?>"/>
<?php
}
foreach($scripts as $var) {
?>
<script src="<?php echo $var; ?>"></script>
<?php
}
?>
<title><?php echo $title; ?></title>
<meta name="keywords" content="<?php echo $keywords; ?>"/>
<meta name="description" content="<?php echo $description; ?>"/>
</head>
<body class="public">
<?php
}


In the administration panel you can decide which keywords are you gonna use and stuff like that... when I see a website online I see source code with all the Keywords, Description, Titles and so... but my websites has been online for months and they just do not appear on Google :( not even if I put "theaddress.com" in the google search bar!

It's driving me crazy.

IMPORTANT:

You can see an example Here chicagos.co This website has all the keywords and stuff like that, but it does not appear on google even if you type the domain, check the source code.

I know that it shows "thedomain.com/views/thepage.php" and I want to know how can I use HTAccess to remove the Views folder from the URL, because I made the admin panel using MVC practice.

Any help from people that knows about SEO and stuff will be very very helpfull. Thanks, let me know if you need more information.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Rivera981

2 Comments

Sorted by latest first Latest Oldest Best

 

@Alves908

You can see an example Here chicagos.co This website has all the keywords and stuff like that, but it does not appear on google even if you type the domain, check the source code.


chicagos.co doesn't appear in the SERPs because you are redirecting it to another domain!?


chicagos.co does a 301 redirect to chicagospizza.co
chicagospizza.co then does a 302 redirect to chicagos.com.co!?


And chicagos.com.co is indexed by Google. You cannot expect chicagos.co to appear in the SERPs if you are redirecting to another domain! Why so many redirects?

(You've also got script after the closing BODY tag which is dubious.)

10% popularity Vote Up Vote Down


 

@Radia820

Google doesn't index or not index a site based on how the site is generated. There is nothing wrong with the code on your site, Google just hasn't found it yet. There are somethings you can do to help -


Sign up for Google Analytics and add the tracking code to your site. You should do this anyway as the information is critical to the success of the site and it's free.
Sign up for Google Webmaster tools, connect it to your Analytics you created in #1
Create a sitemap.xml file and submit it through Webmaster tools (http://www.sitemaps.org/protocol.html)
Get a Google+ account using the Google account you used in #1 . Create a business page for the business, make sure to fill out all the info.
Go to Google places and either claim or submit the business - www.google.com/business/placesforbusiness/ Submit the website to any local directories that accept business listings.


Once you get through these basic steps, you should have the site listed pretty quickly.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme