- Try to write more detailed questions. Explain exactly what you see the problem, how to reproduce it, what you want to get as a result, etc. - Nicolas Chabanovsky ♦
|
1 answer
Ideally, of course, you should find a hosting or VPS, which can be zapyntit immediately to the public folder.
In your case, there are 2 solutions.
1 - Move everything except the public folder to a separate folder, and pull the contents of the public folder to the root. After that, register the correct position of the folder everywhere and check all configs.
2 - Register correctly .htaccess in the root,
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(.*)$ public/$1 [L] </IfModule> |
