Added the option to follow symlinks in the default .htacces.
This commit is contained in:
parent
11ddf00062
commit
509d6b6aa9
@ -97,12 +97,15 @@ To upgrade:
|
|||||||
* Extract the new archive on top of the current one.
|
* Extract the new archive on top of the current one.
|
||||||
* Update your version of Pluf.
|
* Update your version of Pluf.
|
||||||
* Check that the path in the `index.php` are still good.
|
* Check that the path in the `index.php` are still good.
|
||||||
* Upgrade the database with:
|
* Remove all the `*.phps` files in your temp folder.
|
||||||
|
* Upgrade the database with the upgrade commands:
|
||||||
|
|
||||||
|
**Upgrade commands:**
|
||||||
|
|
||||||
$ php /home/www/pluf/src/migrate.php --conf=IDF/conf/idf.php -a -d -u
|
$ php /home/www/pluf/src/migrate.php --conf=IDF/conf/idf.php -a -d -u
|
||||||
$ php /home/www/pluf/src/migrate.php --conf=IDF/conf/idf.php -a -d
|
$ php /home/www/pluf/src/migrate.php --conf=IDF/conf/idf.php -a -d
|
||||||
|
|
||||||
* Remove all the `*.phps` files in your temp folder.
|
|
||||||
|
|
||||||
## Repository Synchronization
|
## Repository Synchronization
|
||||||
|
|
||||||
@ -119,11 +122,13 @@ and not `http://yourdomain.com/index.php/p/yourproject/` you can use
|
|||||||
the following `.htaccess` file to be put in the same folder of the
|
the following `.htaccess` file to be put in the same folder of the
|
||||||
`www/index.php` file.
|
`www/index.php` file.
|
||||||
|
|
||||||
|
Options +FollowSymLinks
|
||||||
RewriteEngine On
|
RewriteEngine On
|
||||||
RewriteCond %{REQUEST_FILENAME} !-f
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
RewriteCond %{REQUEST_FILENAME} !-d
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
RewriteRule ^(.*) /index.php/$1
|
RewriteRule ^(.*) /index.php/$1
|
||||||
|
|
||||||
|
`Options +FollowSymLinks` is only needed if you are using symlinks.
|
||||||
|
|
||||||
## For the Gentoo users
|
## For the Gentoo users
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user