Dots / Periods / Full Stops in Additional URL
PermalinkMy current clients old site used static htm pages, meaning all of the current pages are in formathttp://site.com/mypage.htm.
The site has been rebuild in Concrete and we're now looking at creating additional URLs for pages that still exist, however we're having a bit of trouble.
When I enter "mypage.htm" into Additional URL, Concrete will ignore the dot (i presume its using the sanitize string function in Text Helper) and the URL that's added comes out as "mypagehtm".
Can anyone advise? If not maybe this should be added as a feature as I'm sure others have had this problem!
Thanks,
Job.

I'd prefer to manually make the required changes so I can utilise it until the it's pushed live in 5.6.0.3.
Thanks for the prompt reply (unlike mine!)
Thanks for the help.
I actualy edited the .htaccess
here's an example :
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Temp fix
# Remove after upgrade
RewriteCond %{REQUEST_URI} ^(.*).html$
RewriteRule ^(.*)url\.html$ /link/ [L]
# /Temp fix.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>