| 1234567891011121314 |
- <IfModule mod_rewrite.c>
- Options -MultiViews
- RewriteEngine On
- RewriteCond %{SERVER_PORT} 80
- RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^(.*)$ index.php [QSA,L]
- </IfModule>
- <IfModule !mod_rewrite.c>
- <IfModule mod_alias.c>
- RedirectMatch 302 ^/$ /index.php/
- </IfModule>
- </IfModule>
|