123456789101112131415161718192021222324252627282930 |
- Options +ExecCGI
- Options +FollowSymLinks
- Options -MultiViews
- RewriteEngine On
- RewriteBase /
- RewriteCond %{HTTPS} off
- RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
- RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
- RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [R=301,QSA,NC,L]
- RewriteEngine On
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteRule ^(.*)$ freepost.cgi/$1 [L]
|