|
I wonder.....
My .htaccess is as follows;
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)\.htm $1.php [nc]
RewriteRule ^(.*)\.html $1.php [nc]
RewriteRule ^(.*)\.asp $1.php [nc]
RewriteRule ^locate.php index.php?section=locate
RewriteRule ^available.php index.php?section=available
RewriteRule ^news.php index.php?section=news
RewriteRule ^features.php index.php?section=features
RewriteRule ^extras.php index.php?section=extras
You can see what it's doing, but do I have create a new line for every 'section'? Or can it be done with a global wildcard?
|