-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.htaccess
More file actions
22 lines (19 loc) · 785 Bytes
/
.htaccess
File metadata and controls
22 lines (19 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
php_flag display_errors on
SetEnvIf PROXY_AUTH .+ PROXY_AUTH=$0
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}% !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^Login$ login.php [L]
RewriteRule ^Signup$ register.php [L]
RewriteRule ^Dashboard$ dashboard.php [L]
RewriteRule ^Logout$ logout.php [L]
RewriteRule ^Support$ support.php [L]
RewriteRule ^install/proxyAPI$ install/ProxyCheckerInstall.php [L]
RewriteRule ^install/Done$ install/installDone.php [L]
RewriteRule ^ProxyCheckerFAQ$ faq.php [L]
RewriteRule ^DataPrivacy$ DataPrivacy.php [L]
RewriteRule ^TermsOfService$ TermsOfService.php [L]
RewriteRule ^EN$ ?LANGUAGE=EN [L]
RewriteRule ^ES$ ?LANGUAGE=ES [L]
RewriteRule ^ProxyCheckerApi$ ProxyCheckerAPI.php [L]
RewriteRule ^v1/check$ v1/controller/checkProxy.php [L]