In this Joomla tutorial you will learn:
- About Joomla URLs. You know that mess of parameters in your address bar?
What does it mean? How can you clean it up?
- How to enable Joomla's search engine friendly URLs support in the core.
view the tutorial at
joomlaphile.com
Come back and leave Questions, Comments, Suggestions for this Joomla Tutorial.
Something wrong here..
fixed
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
RewriteRule ^(content/|component/) index.php
and not
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_URI} ^(/component/option,com) [NC,OR] ##optional - see notes##
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$ [NC]
RewriteRule ^(content/|component/) index.php
as per the video... cheers