<IfModule mod_rewrite.c>
    RewriteEngine on

		# Only with survey code
		# .../index.php?sid=12185 to https://limesurvey-test.amc.nl/new/index.php/12185
    #RewriteCond %{REQUEST_FILENAME} !-f
    #RewriteCond %{REQUEST_FILENAME} !-d
		RewriteCond %{QUERY_STRING} sid=(.*)
		RewriteRule index.php/%1  [L]

    # if a directory or a file exists, use it directly
    # otherwise forward it to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . index.php
</IfModule>
# General setting to properly handle LimeSurvey paths
# AcceptPathInfo on