1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 22:53:03 +05:30

(feat): implemented basic url router and updated server .htaccess config

This commit is contained in:
2023-11-09 21:06:30 +05:30
parent 7304483e87
commit c21d06a64d
5 changed files with 299 additions and 253 deletions

4
htdocs/.htaccess Normal file
View File

@@ -0,0 +1,4 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1[QSA,L]