Files
2026-07-20 12:12:48 +05:30

11 lines
414 B
Plaintext

# Upload/merge this into the Apache document ROOT for demo.cavinkare.in
# (the folder ABOVE /citpl_website/), not into /citpl_website/.htaccess.
#
# Old/cached JS requests https://demo.cavinkare.in/assets/... which 404s.
# This serves those files from the real location under /citpl_website/assets/.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^assets/(.*)$ /citpl_website/assets/$1 [L]
</IfModule>