[Solved] URL Rewrite Jooomla 2.5 Ubuntu 12.04 - Joomla! Forum - community, help and support
i had issues getting url rewrite work on ubuntu 12.04. code below added .htaccess allowed url rewrites without server-side issues.
## code clears rewrite loop. other can't tell why works or changes.
hope saves time!
thanks http://stackoverflow.com/a/9580700/1888998 !
## code clears rewrite loop. other can't tell why works or changes.
code: select all
rewriteengine on
rewritecond %{request_filename} !-f
rewritecond %{request_filename} !-d
rewritecond %{request_uri} !^/(index\.php|images|css|js|robots\.txt|favicon\.ico)
rewriterule ^(.*)$ index.php/$1 [l]
options -indexeshope saves time!
thanks http://stackoverflow.com/a/9580700/1888998 !
the rewrite in ubuntu no different of other version past 8, default joomla works fine on latest version, need install mod-rewrite extension apache2
Comments
Post a Comment