View Single Post
  #14 (permalink)  
Old 01-27-2008, 09:27 PM
espmartin's Avatar
espmartin espmartin is offline
Senior Member
1086 posts this year. Platinum VIP!
Trusted Member - This user is a Master!
Last months UKWW Tokens: 3
 
Join Date: Jun 2007
Location: West Coast, USA (California)
Posts: 963
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Default

Here's how to remove the index.* - without looping:
Code:
# take out the index.php in URL...
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.(php|htm|html)\ HTTP/
RewriteRule ^(([^/]+/)*)index\.(php|htm|html)$ http://%{HTTP_HOST}/$1 [R=301,L]
Reply With Quote