Forum Moderators: phranque
RewriteEngine On
IndexIgnore *
Options +FollowSymLinks All -Indexes +MultiViews
RewriteRule ^/index/content/2550M-Rev07/$ /index.php?option=com_content&view=article&id=10&Itemid=22 [L]
########## Begin - Joomla! core SEF Section
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for the site root, or for an extensionless URL,
# or the requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw|ini|zip|json|file))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
########## End - Joomla! core SEF Section
RewriteRule ^/index/content/2550M-Rev07/$ /index.php?option=com_content&view=article&id=10&Itemid=22 [L]
Get rid of the leading slash in the pattern. mod_rewrite strips away the slash at the end of the domain name, so the pattern will only work for malformed URLs like "example.com//pagename".* But keep the leading slash in the target, where you've got it.