Skip to content

Commit

Permalink
.htaccess file initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
Selium98 committed May 5, 2020
1 parent 868da03 commit cd075ec
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -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.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /Eduocity/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /Eduocity/index.php [L]
</IfModule>

# END WordPress

0 comments on commit cd075ec

Please sign in to comment.