sfedosimov/blog/master/web/.htaccess - Htaccess File

sfedosimov/blog/master/web/.htaccess

Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on

RewriteBase /

RewriteCond %{REQUEST_URI} .xml$
RewriteRule ^(.*)$ $1 [L,QSA]

# Если файл или каталог не существует, идём к /web/index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*[^/])$ $1/ [L,R=301]

RewriteCond %{HTTP_HOST} ^fedosimoff.ru
RewriteRule (.*) http://www.fedosimoff.ru/$1 [R=301,L]

RewriteRule . index.php

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME, REQUEST_URI

Comments

Apache