diff --git a/content/docs/faq.md b/content/docs/faq.md index fa46989..56f5062 100644 --- a/content/docs/faq.md +++ b/content/docs/faq.md @@ -129,10 +129,11 @@ If you need support, feel free to submit a request ticket directly in the Deploy ## I get a 403 error after deploying my website, what can I do? ### Make sure you have created an index file -An index file (typically named index.html) is the entry point for your website. It is the first file that is loaded when a user visits your site, and it provides the initial content and structure for your web page. Deploy Now requires an index file to be present in your project's output folder, as it is used to determine the starting point for your website. If you do not have an index file, you will receive a 403 error when trying to access your website. +An index file (typically named index.html or index.php) is the entry point for your website. It is the first file that is loaded when a user visits your site, and it provides the initial content and structure for your web page. Deploy Now requires an index file to be present in your project's output folder, as it is used to determine the starting point for your website. If you do not have an index file, you will receive a 403 error when trying to access your website. ### Make sure you configured the output folder correctly according to the framework you used -The output folder is the directory where your built website files are stored. To configure the output folder for your Deploy Now project, you need to specify the correct folder path in your project settings. The output folder should contain your website's index file, as well as any other files required for your website to function correctly. If you are unsure about how to configure the output folder, please consult the documentation for your specific framework or build tool. +The output folder is the directory, which gets deployed to your webspace. To configure the output folder for your Deploy Now project, you need to specify the correct folder path in your project settings. The output folder should contain your website's index file, as well as any other files required for your website to function correctly. In static projects the output folder is usually the generated dist directory. +In php applications files usually get deployed from project root and public directory is set to public If you are unsure about how to configure the output folder, please consult the documentation for your specific framework or build tool. ### Make sure you have an .htaccess file An .htaccess file is a configuration file used by web servers to control access to your website and configure various settings. It is a required file for many websites, and its absence can cause errors. To include an .htaccess file in your Deploy Now project, simply add it to your project's root directory or output folder. Make sure to configure the file correctly according to your website's needs. If you are unsure about how to create or configure an .htaccess file, please consult the documentation for your specific framework.