From f4e66828bf80fa48cf4193a7d1ba5f8abe832d26 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Tue, 29 Oct 2024 18:59:11 +0300 Subject: [PATCH] Fix #194: Remove .htaccess (#211) --- public/.htaccess | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 public/.htaccess diff --git a/public/.htaccess b/public/.htaccess deleted file mode 100644 index a82a91f..0000000 --- a/public/.htaccess +++ /dev/null @@ -1,12 +0,0 @@ -# use mod_rewrite for pretty URL support -RewriteEngine on - -# if $showScriptName is false in UrlManager, do not allow accessing URLs with script name -RewriteRule ^index.php/ - [L,R=404] - -# If a directory or a file exists, use the request directly -RewriteCond %{REQUEST_FILENAME} !-f -RewriteCond %{REQUEST_FILENAME} !-d - -# Otherwise forward the request to index.php -RewriteRule . index.php