我想從url中刪除index.php,我使用wordpress和iis7。 我怎麼能做到這一點從iis7的wordpress網址中刪除index.php
6
A
回答
0
一個漂亮的快速解決方案,在您使用Windows Azure的網站,是用Microsoft WebMatrix
登錄到您的網站,只需創建一個web.config文件as this article pointed out的情況。解決了它。無需自己安裝URL Rewrite extension
或類似的東西。 MS Webmatrix似乎很容易解決這個問題。
6
使用該web.config中
(web.config文件在IIS中等價爲.htaccess在Apache服務器的文件,它可以在根文件夾中找到。如果沒有,你需要創建一個。 )
<?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%/
+0
其中是web.config –
+1
web.config是與Apache Web服務器中的.htaccess文件相當的IIS。它可以在根文件夾中找到。如果沒有,則需要創建一個。 – Binod
相關問題
- 1. 從Oxwall網址中刪除index.php
- 2. sonata從網址中刪除/index.php
- 3. 無法從CodeIgniter網址中刪除index.php
- 4. 從CodeIgniter網址中刪除index.php
- 5. CodeIgniter |從的.htaccess刪除網址的index.php
- 6. 從wordpress URL刪除index.php
- 7. Wordpress從網址中刪除Slug
- 8. 從網址中的Kohana 2.x中刪除的index.php
- 9. 從Codeigniter網站刪除index.php
- 10. CodeIgniter從基址中刪除index.php
- 11. CI中刪除從我的網址的index.php 2
- 12. 如何從網址中的Kohana刪除的index.php 3.1
- 13. 想從網址中移除tiki-index.php
- 14. 如何從iis windows服務器的網址中刪除Index.php
- 15. 如何從WordPress網站URL中刪除index.php
- 16. 從網址中刪除index.php ONLY CI子目錄
- 17. 如何使用.htaccess從網址中刪除index.php
- 18. JQuery.address - 從網址中刪除#
- 19. 從網址中刪除hashtag
- 20. 從網址中刪除「essential_grid」
- 21. 無法從活動網站中的codeigniter網址中移除index.php
- 22. 如何使用.htaccess從Wordpress中的網址中刪除單詞?
- 23. 刪除#!從我的網址
- 24. 從htaccess中刪除index.php
- 25. 從url中刪除index.php Codeigniter
- 26. Htaccess從URL中刪除Index.php
- 27. codeIgniter Index.php從URL中刪除
- 28. 從url中刪除index.php
- 29. 從URL中刪除/index.php/ .htacess
- 30. 從子域中刪除index.php
任何此答案的解決問題了嗎? –