Magento をインストールしていて、URL を書き換えて index.php と末尾の「/」を削除したい
たとえば、http: //www.domain.com/index.php/をhttp://www.domain.com http://www.domain.com/index.php/customer/account/login/にhttp:/に書き換え ます。 /www.domain.com/customer/account/login
などなど。これらの 2 つの URL ではなく、すべての URL に対してです。
私は現在これを私のweb.configに持っています:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Magento SEO: remove index.php from URL">
<match url="^(?!index.php)([^?#]*)(\\?([^#]*))?(#(.*))?" />
<conditions>
<add input="{URL}" pattern="^/(media|skin|js)/" ignoreCase="false" negate="true" />
<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:0}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
上記の web.config では、URL はまったく書き換えられていないように見えますが、そのまま保持されています。