Apache Webサーバーでホストしている場合は.htaccess
、コンテンツと同じフォルダーに次のファイルを作成します。
<IfModule mod_rewrite.c>
# Enable rewrite engine
RewriteEngine on
# If the condition "file does not exist"…
RewriteCond %{REQUEST_FILENAME} !-f
# or the condition "directory does not exist"…
RewriteCond %{REQUEST_FILENAME} !-d
# rewrite the request as if it came from index.php
RewriteRule ^ index.php [L]
</IfModule>
IISサーバーの場合は、次のweb.config
ファイルを試してください。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<!-- Rewrite URLs of the form 'x' to the form 'index.php?q=x'. -->
<rule name="Short URLs" 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?q={R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
<httpErrors>
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/index.php" responseMode="ExecuteURL" />
</httpErrors>
<defaultDocument>
<!-- Set the default document -->
<files>
<remove value="index.php" />
<add value="index.php" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
どちらの構成も、 Drupal7構成ファイルに大まかに基づいています。実際のファイルまたはディレクトリ(例:/ about-us)と一致しないすべてのリクエストをWebサーバーに送信し、代わりに実際に出力を返します(静的HTMLファイルを提供している場合は代わりにそこにindex.php
置くことができます)。index.html
これはすべてサーバー側で発生します…エンドユーザーは、入力したURLを引き続き表示します(http://yourdomain.com/about-us)。Javascript(as location.href
)を使用してそのURLをキャプチャし、必要な表示変更を行うことができます。