File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ RewriteEngine On
5
5
RewriteCond %{SCRIPT_FILENAME} !-d
6
6
RewriteCond %{SCRIPT_FILENAME} !-f
7
7
8
- RewriteRule ^(.*)$ . /index.php
8
+ RewriteRule ^(.*)$ /index.php
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ composer require sebastianks/volcano
23
23
# copy initial configuration and site to your project
24
24
# if you don't do this you *have* to set these things up manually.
25
25
cd ~ /path/to/site/
26
- cp vendor/sebastianks/volcano/config/setup.php .
27
- cp -R vendor/sebastianks/volcano/config/site .
26
+ cp vendor/sebastianks/volcano/config/.htaccess .
27
+ cp -R vendor/sebastianks/volcano/config/* .
28
28
```
29
29
30
30
## Theming
Original file line number Diff line number Diff line change
1
+ Options +FollowSymLinks
2
+ RewriteEngine On
3
+
4
+ # Ignore existing directories (!-d) and files (!-f)
5
+ RewriteCond %{SCRIPT_FILENAME} !-d
6
+ RewriteCond %{SCRIPT_FILENAME} !-f
7
+
8
+ RewriteRule ^(.*)$ /index.php
You can’t perform that action at this time.
0 commit comments