Commit 48396618 authored by dj3c1t's avatar dj3c1t

update .htaccess files and add index.php in web/

parent 97da4b34
<IfDefine Free>
php56 1
</IfDefine>
Deny from all
\ No newline at end of file
# This file is a "template" of what your parameters.yml file should look like
# Set parameters here that may be different on each deployment target of the app, e.g. development, staging, production.
# http://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
parameters:
database_host: 127.0.0.1
database_port: ~
database_name: symfony
database_user: root
database_password: ~
# You should uncomment this if you want use pdo_sqlite
# database_path: "%kernel.root_dir%/data.db3"
database_host: null
database_port: null
database_name: null
database_user: null
database_password: null
mailer_transport: smtp
mailer_host: 127.0.0.1
mailer_user: ~
mailer_password: ~
# A secret key that's used to generate certain security-related tokens
mailer_user: null
mailer_password: null
secret: ThisTokenIsNotSoSecretChangeIt
default_route: ~
default_route:
route: author_index
web_dir: web
<?php
$baseUri = dirname($_SERVER['SCRIPT_NAME']);
$baseUri .= substr($baseUri, -1) == "/" ? "" : "/";
header("Location: ".$baseUri."web/app.php");
#
# Rename this file to .htaccess to enable URLs without "app.php" prefix
#
# Use the front controller as index file. It serves as a fallback solution when
# every other rewrite/redirect fails (e.g. in an aliased environment without
# mod_rewrite). Additionally, this reduces the matching process for the
......
<?php
$baseUri = dirname($_SERVER['SCRIPT_NAME']);
$baseUri .= substr($baseUri, -1) == "/" ? "" : "/";
header("Location: ".$baseUri."app.php");
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment