Posts by adel • 23 points
3 posts
-
0
votes1
answer23
viewsA: Reload the page in Vue 3 no dist can not find the page
I was able to solve the problem by putting /etc/apache2/sites-enabled/000-default.conf <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^index\.html$ - [L] RewriteCond…
-
0
votes1
answer23
viewsQ: Reload the page in Vue 3 no dist can not find the page
Creating a simple application in vue3 cli and entering the router page he gives me this code -> import { createRouter, createWebHistory } from 'vue-router' import Home from '../views/Home.vue'…
-
1
votes1
answer285
viewsQ: How to separate HTML from Java code from connection to the database?
I have a database and an html code that I finally managed to make connection but the code is kind of messy because it mixes html with java and mysql... Following example: <%@page…