• Existing
    https://www.domain.com/index.php/about

    Need
    https://www.domain.com/about

    How can I do this?

    Here is my details
    ========================================================
    — phpMyAdmin SQL Dump
    — version 3.3.7
    https://www.phpmyadmin.net

    — Host: localhost:3306
    — Generation Time: Mar 10, 2015 at 06:02 AM
    — Server version: 5.1.50
    — PHP Version: 5.3.3

    web.config
    =======================================================
    <?xml version=”1.0″ encoding=”UTF-8″?>
    <configuration>
    <system.webServer>
    <rewrite>
    <rules>
    <rule name=”Main Rule” stopProcessing=”true”>
    <match url=”.*” />
    <conditions logicalGrouping=”MatchAll”>
    <add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
    <add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
    </conditions>
    <action type=”Rewrite” url=”index.php” />
    </rule>
    </rules>
    </rewrite>
    </system.webServer>
    </configuration>

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘I want to remove index.php in the permalink from iis’ is closed to new replies.