removing index.php IIS 7.5 webconfig
I would like to remove index.php from my permalink.
I am using Codeigniter website.
I have passed the requirements to use pretty permalink:
-PHP Version 5.4.27 Codeigniter
-IIS 7.5
-URL Rewrite 2.0
-Server API: FAST CGI
Before, I have removed index.php from codeigniter. I wonder if wordpress webconfig file has conflicted with codeigniter. Some help on determining the right webconfig would be greatly appreciated!
website.com/en/user = codeigniter with the controller User
website.com/blog
/apps
/system
/blog
web config to remove CI index.php
?xml version="1.0" encoding="UTF-8"?
configuration
system.webServer
rewrite
rules
rule name="RuleRemoveIndex" stopProcessing="true"
match url="^(.*)$" ignoreCase="false" /
conditions
add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /
add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /
/conditions
action type="Rewrite" url="index.php/{R:1}" appendQueryString="true"/
/rule
/rules
/rewrite
/system.webServer
/configuration
/blog => WP app
web.config on WP dir
?xml version="1.0" encoding="UTF-8"?
configuration
system.webServer
rewrite
rules
rule name="wordpress" patternSyntax="Wildcard"
match url="*"/
conditions
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 same question on stackoverflow:
Topic iis permalinks htaccess Wordpress
Category Web