Jump to content

Creating a Custom CMS - Adding New Pages


ukscotth

Recommended Posts

Hi All,

 

I've been creating sites with custom CMS for a while now and I'm trying to figure out how to let clients create new pages from within the CMS and what the standard method is to do it. I guess it would use mod rewrite but I'm not sure.

 

Any ideas ?

 

Thanks,

 

Scott.

 

 

 

Link to comment
Share on other sites

Simplest way to do this while retaining SEO is with mod_rewrite

 

.htaccess

RewriteRule page/(\w\-)* /page.php?uri=$1 [L,QSA]

 

page.php

$uri = $_GET["uri"];
$uri = mysql_real_escape_string(trim($uri));
$page = mysql_query("SELECT * FROM pages WHERE uri = '{$uri}'");

 

In the admin do something like this:

$title = $_POST["title"];
$uri = strtolower(preg_replace("/[^\w]+/", "-", trim($title));

Link to comment
Share on other sites

No, $title is the title they enter, e.g. "Read about Our Cool Little Company"

 

$uri would then be auto-generated as "read-about-our-cool-little-company"

 

And the url would be "www.ourcompany.com/page/read-about-our-cool-little-company"

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.