I want to remove index.php in the permalink from iis
-
Existing
https://www.domain.com/index.php/aboutNeed
https://www.domain.com/aboutHow 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.3web.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>
- The topic ‘I want to remove index.php in the permalink from iis’ is closed to new replies.