halkbank_shahsyotag_frontend/.htaccess

10 lines
278 B
ApacheConf
Raw Permalink Normal View History

2022-02-14 13:57:12 +00:00
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subdirectory
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>