Remove index.php from wordpress URLs in iis7(从 iis7 中的 wordpress URL 中删除 index.php)
问题描述
我想从 url 中删除 index.php ,我正在使用 wordpress 和 iis7 .我该怎么做
I want to remove index.php from url , i am using wordpress and iis7 . how can i do this
推荐答案
使用这个 web.config
Use this web.config
(web.config是相当于apache webservers中的.htaccess文件的IIS,根目录下可以找到,没有的话需要自己创建一个.)
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<!-- Set the default document -->
<files>
<remove value="index.php" />
<add value="index.php" />
</files>
</defaultDocument>
<httpErrors errorMode="Detailed"/>
<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>
然后在永久链接页面中,设置自定义结构"并赋予值 /%postname%/
Then in permalinks page, set "Custom Structure" and give the value /%postname%/
请注意,需要安装特定于 IIS 版本的 URL 重写模块才能使其正常工作(感谢@Spikolynn 在下面的评论)
Note that URL Rewrite module specific to IIS version needs to be installed for this to function(Thanks to @Spikolynn's comment below)
这篇关于从 iis7 中的 wordpress URL 中删除 index.php的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 iis7 中的 wordpress URL 中删除 index.php
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- HTTP 与 FTP 上传 2021-01-01