-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
htaccess.php
29 lines (24 loc) · 857 Bytes
/
htaccess.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Definir limites de tamanho de upload e timeout
php_value post_max_size 8M
php_value upload_max_filesize 2M
php_value max_execution_time 30
# Ativar o mecanismo de reescrita
RewriteEngine On
# Reescrever apenas quando o método POST for usado
RewriteCond %{REQUEST_METHOD} POST
# Reescrever regras
RewriteRule ^registro/?$ /login.php [L]
RewriteRule ^registro/?$ /registro.php [L]
RewriteRule ^painel/?$ /painel.php [L]
RewriteRule ^relatorio/?$ /relatorio.php [L]
RewriteRule ^relatorio/?$ /validados.php [L]
RewriteRule ^relatorio/?$ /validacao_atendimento.php [L]
# Configurações do diretório (certifique-se de ajustar o caminho se necessário)
<Directory /var/www/html>
AllowOverride All
Require all granted
</Directory>
# Aplicar manipulação de arquivos PHP
<FilesMatch "\.php$">
SetHandler application/x-httpd-php
</FilesMatch>