1
0
Fork 0
tupali_fork/.htaccess

18 lines
788 B
ApacheConf

Options +FollowSymLinks
Header set Access-Control-Allow-Origin: *
Header set Access-Control-Allow-Credentials: true
#Header set Access-Control-Allow-Methods: "GET,POST,OPTIONS,DELETE,PUT"
ErrorDocument 404 /404.php
RewriteEngine On
## using www for url shortener domain is bad idea :D
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteRule ^$ index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
###RewriteRule (.*)/milfs/archivos/$1 /milfs/archivos/index.php?archivo=$1 [L,QSA,NC]
RewriteRule (.*) index.php?v=$1 [QSA,L]
#RewriteRule /^$ index.php?v=$1 [QSA,L]
RewriteRule ^milfs/archivos/$ milfs/archivos/index.php?archivo=$1 [L,QSA,NC]