Forum Moderators: not2easy
When you make pages to profit from, whether it is webshops, affiliate sites, one-product-shops, article directories or whatever.. how do you make the pages?
(It should be possible to add content in an easy way, and not have to change 238 pages for one change on one page - like a new link that should be reachable from all the pages) - Omg, did you understand that?
Anyway, do you pay someone to make them? Do you use frontpage or dreamweaver, do you write them yourself?
I guess I'm asking for some ideas on how to develop good SEO pages without having to write ten's of thousands of php lines in textpad.
Oh.. And also:
how the %#"% do you make the pages look like thay have been made in plain html even if it is a index.php which runs the whole site.. i'm talking about NOT having the urls like
domain.com/index.php?group=hello&site=indonesia
I want the pages to be generated in html.. if you understand what I mean..
I think myweddingfavors.com gives you an idea on what I'm looking for regarding the urls..
I would love to get some answers...
East mod_rewrite [google.co.uk]
i.e in your .htaccess add
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([0-9]).html$ index.php?cat=$1 [L,NC]
and 1.html will goto index.php?cat=1
(1) Code by hand.
(2) Use a WYSIWYG editor like Dreamweaver or FrontPage.
(3) Use a content management system (CMS). CMS's are really popular for blogs, like Blogger, MovableType, and WordPress.
Personally I use a combination of (1) and (2) for my various sites, and I'll probably add (3) soon.
To be able to make a change in one place to affect the whole site, your options are:
(1) Use SSI (server-side includes). You'll put some code in your pages like <!--#include virtual="/template.html"-->, and then your pages will pull in the template.html file. To turn this feature on you'll also need to edit your .htaccess file (or create it if it's not there), adding the command: AddHandler server-parsed .html
(2) Use a server-side script to assemble your pages (Perl, PHP, or Python). The script can take the common elements (e.g., navigation) and combine them with the page content to print out the complete page. This is most commonly done by keeping the content for each page in a database, like mySQL. If you want the urls to appear nice (e.g., example.com/topic rather than example.com/content.cgi?topic), you can add mod_Rewrite commands to your .htaccess file.
(3) Use a CMS. CMS systems generally let you make a change in one place which affects your whole site.