From cd075ecc27ed1b9fef18fe96c2065e84857889a7 Mon Sep 17 00:00:00 2001 From: Yash Kulkarni <60318826+Selium98@users.noreply.github.com> Date: Tue, 5 May 2020 16:21:31 +0530 Subject: [PATCH] .htaccess file initialization --- .htaccess | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .htaccess diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..9569d6f --- /dev/null +++ b/.htaccess @@ -0,0 +1,15 @@ + +# BEGIN WordPress +# The directives (lines) between `BEGIN WordPress` and `END WordPress` are +# dynamically generated, and should only be modified via WordPress filters. +# Any changes to the directives between these markers will be overwritten. + +RewriteEngine On +RewriteBase /Eduocity/ +RewriteRule ^index\.php$ - [L] +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule . /Eduocity/index.php [L] + + +# END WordPress \ No newline at end of file