need help in wordpress

by aaryan
2 replies
  • WEB DESIGN
  • |
I have a wordpress website ( self hosted) and want to upload a html page to this domain . Pls guide me where I have to upload this page .

Suppose my wordpress website is : http://mywordpresswebsite.com/

I created a HTML page : myhtmlpage.html

I want this page to be hosted on my domain and the url will be :
http://mywordpresswebsite.com/myhtmlpage.html

Pls guide me where I have to upload this page to access through above url.

Thanks
#wordpress
  • Profile picture of the author BillyW
    Simply upload the HTML page to the server. I use Filezilla, but depending on how your hosting is set up, you should be able to upload it from your control panel.
    Signature
    Qosso.com - Exceptional Branding At Affordable Prices
    {{ DiscussionBoard.errors[7950132].message }}
  • Profile picture of the author RobinInTexas
    You can create a page template and include your html page.


    Pages « WordPress Codex

    Use the code below:

    <?php
    /*
    Template Name: Html Page

    ^^ this is important you can name the template anything you want.
    "Template Name:" must be exactly as above

    You need to "Add New Page" from the wordpress dashboard.

    You just need to fill in the 'Page Title' and you need to go into "Page Attributes" and select the template you named above. The Page name is important, and it will be in the URL if your permalinks include /%postname%/
    I suggest you place any images in a directory off the wordpress root called "images and make sure all the image links are correct.
    */

    // insert all of your html page between here


    // and here you can include any html markup or php code you like
    ?>

    copy everything between the <?php and ?> including the <?php and ?>to the file and save it in your wp-content/themes/youractivetheme subdirectory as "pick-a-unique-name.php"
    Signature

    Robin



    ...Even if you're on the right track, you'll get run over if you just set there.
    {{ DiscussionBoard.errors[7950217].message }}

Trending Topics