Skip to content

Instantly share code, notes, and snippets.

View cahrur's full-sized avatar

Cahrur Rozid cahrur

View GitHub Profile
@cahrur
cahrur / .htaccess
Last active December 8, 2024 03:12
Panduan Deploy Proyek Laravel di Cyberpanel
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect all requests to the public directory
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>