- このトピックには0の返信、1の音声があり、最後に更新されました 4年、8ヶ月前 by Wordのクラッカー.
Viewing 0 reply threads
- 著者投稿
-
-
WordのクラッカーKeymasterIIS 8に WordPressを設置して運営する場合は、URL(固有アドレス)にindex.phpがつく場合があります。 例えば、 http://www.abc.com/blog가 必要がありますが、 http://www.abc.com/index.php/blog처럼 表示されることがあります。 このような場合、web.configファイルを次のように変更すると、問題が解決されています。
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <defaultDocument enabled="true"> <files> <add value="index.php" /> </files> </defaultDocument> <rewrite> <rules> <rule name="WPurls" enabled="true" 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/{R:0}" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
直接変更することができない場合は、サーバー管理者にindex.phpがつくと話してくれれば措置を取ってくれます。
IIS 7の場合 この記事を参考にしてみてください。
2016年6月27日at 10:10午後
-
- 著者投稿
Viewing 0 reply threads
The forum「自由掲示板」is closed to new topics and replies。