Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
taskonsite-архив-перенесен
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dmitry Korolev
taskonsite-архив-перенесен
Commits
0fa4bc02
Commit
0fa4bc02
authored
May 11, 2016
by
Олег Гиммельшпах
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix htaccess
parent
293356de
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
1 deletion
+26
-1
.gitignore
.gitignore
+0
-1
.htaccess
.htaccess
+14
-0
backend/web/.htaccess
backend/web/.htaccess
+6
-0
frontend/web/.htaccess
frontend/web/.htaccess
+6
-0
No files found.
.gitignore
View file @
0fa4bc02
...
...
@@ -11,7 +11,6 @@ nbproject
.buildpath
.project
.settings
.htaccess
# windows thumbnail cache
Thumbs.db
...
...
.htaccess
0 → 100644
View file @
0fa4bc02
Options
+FollowSymLinks
IndexIgnore
*/*
RewriteEngine
on
RewriteCond
%{REQUEST_URI} !^/(web)
RewriteRule
^assets/(.*)$ /web/assets/$1 [L]
RewriteRule
^css/(.*)$ web/css/$1 [L]
RewriteRule
^js/(.*)$ web/js/$1 [L]
RewriteRule
^images/(.*)$ web/images/$1 [L]
RewriteRule
(.*) /web/$1
RewriteCond
%{REQUEST_FILENAME} !-f
RewriteCond
%{REQUEST_FILENAME} !-d
RewriteRule
. /web/index.php
\ No newline at end of file
backend/web/.htaccess
0 → 100644
View file @
0fa4bc02
RewriteEngine
On RewriteBase /
RewriteCond
%{REQUEST_FILENAME} !-f
RewriteCond
%{REQUEST_FILENAME} !-d
RewriteRule
. index.php
\ No newline at end of file
frontend/web/.htaccess
0 → 100644
View file @
0fa4bc02
RewriteEngine
On RewriteBase /
RewriteCond
%{REQUEST_FILENAME} !-f
RewriteCond
%{REQUEST_FILENAME} !-d
RewriteRule
. index.php
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment