Search code examples
reactjs.htaccessdeploymentcpanelnext.js

How to deploy a nextjs application on cpanel?


I followed these steps to deploy my nextjs on cPanel.

  1. go to package.json and add this line: "homepage": "http://afsanefadaei.ir"

  2. run next build to have .next folder as my build folder

  3. go to cpanel >> file manager >> public_html folder and upload the contetn of .next folder to this directory

  4. add or edit this file: .htaccess to:

    enter image description here

but when I go to the website I face this:

enter image description here

Do you know what is wrong with this?


Solution

    1. Your .next doesn't have index.html file.
    2. Seems like you have server side (mostly using nodejs), but unfortunately you couldn't run that server side from cpanel.
    3. As I know, you should use next export instead of next build if you tend to have frontend side only.

    But the most important thing is number 1, make sure you have index.html inside your .next folder.