Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Ok i will make things clear here,for those who are installing gallery 3 in Windows Server with IIS7 and are trying to get rid of the index.php file from the url.</p> <p>1st : Keep your web.config file with the rewrite rules in the directory where you are installing gallery and not the root of your website</p> <p>2nd : The rewrite rules of the web.config file that you are placing inside the gallery folder should be like this</p> <pre><code>&lt;?xml version="1.0" ?&gt; &lt;configuration&gt; &lt;system.webServer&gt; &lt;rewrite&gt; &lt;rules&gt; &lt;rule name="Imported Rule 1" stopProcessing="true"&gt; &lt;match url="^(.*)$" ignoreCase="false" /&gt; &lt;conditions&gt; &lt;add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /&gt; &lt;add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /&gt; &lt;/conditions&gt; &lt;action type="Rewrite" url="index.php?kohana_uri={R:1}" appendQueryString="true" /&gt; &lt;/rule&gt; &lt;rule name="Imported Rule 2" stopProcessing="true"&gt; &lt;match url="^()$" ignoreCase="false" /&gt; &lt;action type="Rewrite" url="index.php?kohana_uri={R:1}" appendQueryString="true" /&gt; &lt;/rule&gt; &lt;rule name="Imported Rule 3" stopProcessing="true"&gt; &lt;match url="^index.php/(.*)" ignoreCase="false" /&gt; &lt;action type="Redirect" redirectType="Found" url="{R:1}" appendQueryString="true" /&gt; &lt;/rule&gt; &lt;/rules&gt; &lt;/rewrite&gt; &lt;/system.webServer&gt; &lt;/configuration&gt; </code></pre> <p>Hope this will be useful for others who are facing the same problems like the one i encountered..</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload