OneManager-php/.htaccess

27 lines
542 B
ApacheConf
Raw Permalink Normal View History

2020-07-18 20:23:21 -07:00
# # Apache
# # LoadModule rewrite_module modules/mod_rewrite.so
# # AllowOverride All
2019-12-30 06:07:18 -08:00
RewriteEngine On
2020-08-26 02:16:02 -07:00
# RewriteCond $1 !^(.well-known)
2019-12-30 06:07:18 -08:00
RewriteRule ^(.*) index.php?/$1 [L]
2020-03-11 06:10:51 -07:00
2020-07-18 20:23:21 -07:00
###-----------------------------------
### nginx
# rewrite ^/(?!.well-known)(.*)$ /index.php?/$1 last;
2020-03-12 20:03:16 -07:00
#
### caddy
2020-03-11 06:10:51 -07:00
# rewrite {
2020-03-12 20:03:16 -07:00
# to index.php?/$1
2020-03-11 06:10:51 -07:00
# }
2020-09-27 00:43:48 -07:00
#
### caddy2 Caddyfile
2020-09-27 01:08:50 -07:00
# @try_files {
# not path /.well-known/*
# file {
# try_files index.php
# }
# }
# rewrite @try_files {http.matchers.file.relative}
2020-09-27 00:43:48 -07:00
#
2020-07-18 20:23:21 -07:00
###-----------------------------------