Commit 8ac5dfe0 by Milica

config.php modified

parent 2f60adcb
Showing with 17 additions and 7 deletions
RewriteEngine on <IfModule mod_rewrite.c>
RewriteCond $1 !^(index\.php|assets|images|js|css|uploads|favicon.png) <IfModule mod_negotiation.c>
RewriteCond %(REQUEST_FILENAME) !-f Options -MultiViews
RewriteCond %(REQUEST_FILENAME) !-d </IfModule>
RewriteRule ^(.*)$ ./index.php/$1 [L]
\ No newline at end of file RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
</style>
</head> </head>
<body> <body>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment