Why not just do the easy thing and let apache do it's job of just showing http://www.domain.com/images/ if they go to http://www.domain.com/images/index.html
I want visitors to visit: http://www.domain.com/images/index.html not http://www.domain.com/images/ If they visit http://www.domain.com/images/ I want them to go to http://www.domain.com/notice.html Any idea how to do it with htaccess?
domain.com/images/.htaccess Options +FollowSymLinks RewriteEngine On RewriteRule ^$ http://www.domain.com/notice.html [R,L] Code (markup):