Same with latest version
Here is my htaccess:
Code:
RewriteEngine on
# set RewriteBase to DIR_WS_CATALOG
RewriteBase /
RewriteRule ^pages-(.+)\.html index.php/pages-$1 [L]
# Uncomment the next three statements if you want to go to the main page in case an URL is entered that requests a non existing file.
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*) . [R]
# Uncomment the next two statements to have http://yourserver.com/ automatically redirected to http://yourserver.com/pages-main/index.html
# NOTE: THIS MIGHT ACTUALLY HINDER SITE INDEXING
#RewriteCond %{REQUEST_URI} ^(.*)/$
#RewriteRule ^(.*) pages-main/index.html [R]
I use Tim´s SEFU contribution.
Stefan