2022-04-08 13:56:28 +00:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine On
|
2022-12-13 09:10:59 +00:00
|
|
|
RewriteBase /primevue-nuxt/
|
|
|
|
RewriteRule ^primevue-nuxt/index\.php$ - [L]
|
2022-04-08 13:56:28 +00:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
2022-12-13 09:10:59 +00:00
|
|
|
RewriteRule . /primevue-nuxt/index.php [L]
|
2022-04-08 13:56:28 +00:00
|
|
|
</IfModule>
|