Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Joomla Sef URLs and its working fine except that i need '.htm' suffix instead of '.html', please help.

currently my URLs appear like :

www.mysite.com/my-page.html

I want it to be like

www.mysite.com/my-page.htm
share|improve this question

2 Answers

up vote 1 down vote accepted

You will want to use one of the 3rd Party Search Engine Friendly link extensions: http://extensions.joomla.org/extensions/site-management/sef

share|improve this answer
Thanks, I solved my problem by purchasing sh404SEF. It worked for my requirement and some more. – Cruising2hell Sep 13 '09 at 11:07

Here is a patch. Tested on my Joomla 1.5.9 (standard bundled 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');
    			}
    		}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.