How to Deploy/Host your React App on Shared Hosting in cPanel

1. Purchase a Domain and Hosting

To host a website and you plan to host your React app, first, you need to register a domain name and Web hosting for your website. To buy Domain and Hosting(click here) If you buy them together, we will point the domain to your hosting server automatically.

2. Add the Homepage to your "package.json file".

3. Open up your React App. Open up your package.json file and add a "homepage" attribute like so:

package.json

 

4. The format should be "homepage": "http://yourdomainname.whatever"

5. Create the "build" file.

6. In your application's root directory, run yarn install to install the updated dependencies. Once this has finished, the next command you'll run is yarn build (npm install and npm build work, too).

7. You'll notice this creates a new directory in your project called build. The build folder is essentially a super-compressed version of your program that has everything your browser needs to identify and run your app.

build directory

 

8. Connect to cPanel.

Your cPanel manager should look something like this:

cPanel manager

 

9. Navigate into the "File Manager". There you'll find a dropdown list of directories. The one we're interested in is public_html. Open that up.

public_html

10. Add the Build File Contents to public_html

11. Navigate to the build file in your app's root directory. Open it up and select all the contents inside the build folderIf you upload the entire build file itself, the process will not work.

build directory

 

12. Once you've copied all the contents inside the build file, upload them into public_html.

13. Create and Upload the .htaccess file

14. In order for the routes to work in your React app, you need to add a .htaccess file. In the public_html folder, at the same level as the build file contents, add a new file, and name it .htaccess.

15. Edit the file and insert the following boilerplate information:

<IfModule mod_rewrite.c>

  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-l
  RewriteRule . /index.html [L]

</IfModule>

.htaccess

16. Save the file.

That's it! Navigate to your domain address in the browser, and you should see your fully functioning web app.

A Note on FileZilla

I know a lot of folks like to use FileZilla to deploy and host their custom web apps. I found it to be unnecessary for my purposes, but should you choose, you can:

  1. Download and run FileZilla,
  2. Grab your domain's ip address  (or ask your hosting provider),
  3. Input the domain IP, cPanel login, cPanel username, and host port (i.e. 21. Your hosting provider should provide that info for you) into the top bar,
  4. Click QuickConnect,
  5. Once connected, navigate to, select, and copy the contents inside the build file (in the left-side pane showing your computer's directories),
  6. Navigate to the public_html directory in the cPanel pane on the right-hand side. Paste the contents of the build file into public_html,
  7. Create the .htaccess file with the same information listed above.
  • React, cpanel
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to Unblock IP Address in Server Firewall

If your IP address was blocked by mistake, you can easily unblock your IP address from the...

How to Create a Full cPanel Backup

1. From the home page of your HayHost client area, navigate to the "Your Active...

How to Install WordPress Manually Using cPanel

1. From the home page of your HayHost client area, navigate to the "Your Active...

How to Create a Database in cPanel (MySQL Database)

1. From the home page of your HayHost client area, then click  "SERVICES".   2. In the "My...