0

私はJoomlaSefURLを使用しており、「。html」の代わりに「.htm」サフィックスが必要なことを除いて、正常に機能しています。助けてください。

現在、私のURLは次のように表示されます。

www.mysite.com/my-page.html

こんな風になりたい

www.mysite.com/my-page.htm
4

2 に答える 2

1

サード パーティの検索エンジンに適したリンク拡張機能の 1 つを使用することをお勧めします: http://extensions.joomla.org/extensions/site-management/sef

于 2009-09-11T16:56:32.960 に答える
0

ここにパッチがあります。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');
                }
            }
于 2009-10-28T21:04:34.907 に答える