A
Asked
This Url
https://pos.78truck.com/admin
How to fix?
Thanks
https://pos.78truck.com/admin
How to fix?
Thanks
- MSAnsweredHello,
Please check with your server admin. Is the path correctly set.
If yes, the 404 error cause due to missing `.htaccess` file. You can check it and upload. The other reason might be mod_rewrite. It should be enabled and configured to use the .htaccess file from site directory.
Thank you - AAnsweredplease sent .htaccess file to me?
- AAnsweredi download file from https://codecanyon.net/ don't have .htaccess file please sent file to email : [email protected]
pls - MSAnsweredHello,
The file is in your download. If you are on linux/unix the dot files are hidden by default. If you need you can craete it with the following contents
```
DirectoryIndex index.php index.html
<IfModule mod_rewrite.c>
RewriteEngine On
# RewriteBase /basepath/
RewriteCond $1 !^(index\.php|assets|install|update)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# For godady Shared Hosting Server uncomment the line below
RewriteRule ^(.*)$ index.php?/$1 [L]
# Please comment this if you have uncommented the above
# RewriteRule ^(.*)$ index.php/$1 [NC,L,QSA]
</IfModule>
```
Thank you - Login to Reply