Adding page to my site help please

11 replies
  • WEB DESIGN
  • |
Hi warrior,

i am wandering how can i add a page to my site, i want to add an offer so i want to do something like this:

www.mysite.com/affoffer

so i can i do that?

Thanks
#adding #page #site
  • Profile picture of the author clickbump
    Hi Altoro, it depends.

    Can you tell us which software (if any) you are using to publish your site (WordPress, HTML, etc)?
    Signature
    {{ DiscussionBoard.errors[8225932].message }}
    • Profile picture of the author altoro80
      Originally Posted by clickbump View Post

      Hi Altoro, it depends.

      Can you tell us which software (if any) you are using to publish your site (WordPress, HTML, etc)?
      It's HTML

      Alex
      {{ DiscussionBoard.errors[8226156].message }}
      • Profile picture of the author rbates
        First, I am getting a dead link error (404 not found) so I can't tell
        what you are attempting to do.

        If you are just adding a page, and it is HTML, then just upload it
        to the same directory in your hosting service account. Make
        sure that the two are linked - and that the links work!
        {{ DiscussionBoard.errors[8226662].message }}
        • Profile picture of the author altoro80
          Originally Posted by rbates View Post

          First, I am getting a dead link error (404 not found) so I can't tell
          what you are attempting to do.

          If you are just adding a page, and it is HTML, then just upload it
          to the same directory in your hosting service account. Make
          sure that the two are linked - and that the links work!
          That is not my site it's just the example, i want to add the page of an affiliate product, let say i want to add the offer jv.1234 to www.mysite.com, so i want it to be www.mysite.com/jv.1234

          How can i do that. It's html site

          Thanks
          {{ DiscussionBoard.errors[8227494].message }}
          • Profile picture of the author Brandon Tanner
            Let's say you use this format for your URL...

            www.YourSite.com?jv=1

            Then just add the following code to that page (that would be your index.php page)...

            <?php
            if (isset($_GET['jv'])) {
            $jv = $_GET['jv'];
            if ($jv == "1")
            {header('Location: http://www.AffiliateLink1.com');}
            else if ($jv == "2")
            {header('Location: http://www.AffiliateLink2.com');}
            else if ($jv == "3")
            {header('Location: http://www.AffiliateLink3.com');}
            }
            ?>

            ^ You can use as many if/else statements as you want for different affiliate links. Just make sure you give your page a php extension (ie index.php).
            Signature

            {{ DiscussionBoard.errors[8228401].message }}
  • Profile picture of the author tjaysen70
    yeah man, if it's html and you're asking how to add a page, then your best bet would be to install wordpress and call it a day.

    To install wordpress, go to your cpanel within your hosting account. The click on Fantastico, then from there install wordpress and you're done. From there you can add pages and posts and change the look/theme of your website with a couple of clicks.
    Signature

    Tired of the grind? Wait. PM me to see a better way.

    {{ DiscussionBoard.errors[8228939].message }}
  • Profile picture of the author Istvan Horvath
    Originally Posted by altoro80 View Post

    Hi warrior,

    i am wandering how can i add a page to my site, i want to add an offer so i want to do something like this:

    www.mysite.com/affoffer
    1. For an example site ALWAYS use example.com - that's the basic rule

    2a. To have something like you posted above you create a new directory on your site's server named "affoffer" and place an index.html file into it... that file should contain all the stuff that you wanted on that "page"...
    2b. Make a file called affoffer.html and add it (plain English: upload via FTP just as you did with the rest of the site) to your site's root folder.
    That would result in a slightly different URL > example.com/affoffer.html

    Now, combine this with other things you've learned in this thread and you are good to go.

    Don't listen to ignorant people that think WP is the answer for everything. Usually, they discovered it yesterday and have no clue how to use it... Just ignore them!
    Signature

    {{ DiscussionBoard.errors[8233354].message }}
    • Profile picture of the author altoro80
      Originally Posted by Istvan Horvath View Post

      1. For an example site ALWAYS use example.com - that's the basic rule

      2a. To have something like you posted above you create a new directory on your site's server named "affoffer" and place an index.html file into it... that file should contain all the stuff that you wanted on that "page"...
      2b. Make a file called affoffer.html and add it (plain English: upload via FTP just as you did with the rest of the site) to your site's root folder.
      That would result in a slightly different URL > example.com/affoffer.html

      Now, combine this with other things you've learned in this thread and you are good to go.

      Don't listen to ignorant people that think WP is the answer for everything. Usually, they discovered it yesterday and have no clue how to use it... Just ignore them!
      thanks for the help, and yes i rather use html then wordpress
      {{ DiscussionBoard.errors[8237558].message }}
  • Profile picture of the author rrahman
    Originally Posted by altoro80 View Post

    Hi warrior,

    i am wandering how can i add a page to my site, i want to add an offer so i want to do something like this:

    www.mysite.com/affoffer

    so i can i do that?

    Thanks
    Its very simple.. I think you have very poor knowledge about HTML or web design.. So search HTML tutorial and learn HTML, CSS and JAVA script..... after that you can easily fix this problem...
    {{ DiscussionBoard.errors[8233392].message }}
    • Profile picture of the author altoro80
      Originally Posted by rrahman View Post

      Its very simple.. I think you have very poor knowledge about HTML or web design.. So search HTML tutorial and learn HTML, CSS and JAVA script..... after that you can easily fix this problem...
      Yes that's why i am asking if i knew html i would not ask, nut thanks for you comment
      {{ DiscussionBoard.errors[8237554].message }}

Trending Topics