私はJoomlaSefURLを使用しており、「。html」の代わりに「.htm」サフィックスが必要なことを除いて、正常に機能しています。助けてください。
現在、私のURLは次のように表示されます。
www.mysite.com/my-page.html
こんな風になりたい
www.mysite.com/my-page.htm
私はJoomlaSefURLを使用しており、「。html」の代わりに「.htm」サフィックスが必要なことを除いて、正常に機能しています。助けてください。
現在、私のURLは次のように表示されます。
www.mysite.com/my-page.html
こんな風になりたい
www.mysite.com/my-page.htm
サード パーティの検索エンジンに適したリンク拡張機能の 1 つを使用することをお勧めします: http://extensions.joomla.org/extensions/site-management/sef
ここにパッチがあります。Joomla 1.5.9 (標準バンドル SEF) でテスト済み:
Index: includes/router.php
===================================================================
--- includes/router.php (revision 13023)
+++ includes/router.php (working copy)
@@ -57,8 +57,13 @@
{
if($suffix = pathinfo($path, PATHINFO_EXTENSION))
{
- $path = str_replace('.'.$suffix, '', $path);
- $vars['format'] = $suffix;
+ if ($suffix == 'htm') {
+ $path = str_replace('.'.$suffix, '', $path);
+ $vars['format'] = 'html';
+ } else {
+ $path = str_replace('.'.$suffix, '', $path);
+ $vars['format'] = $suffix;
+ }
}
}
}
@@ -93,7 +98,8 @@
{
if($format = $uri->getVar('format', 'html'))
{
- $route .= '.'.$format;
+ //$route .= '.'.$format;
+ $route .= '.htm';
$uri->delVar('format');
}
}