easypanel/vhost/control/rewrite/mvc.conf
2023-08-25 10:53:15 +08:00

7 lines
No EOL
193 B
Text

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>