As titled really, I'm thinking I might change out my SSI for php includes, inorder to keep links operational until they're changed or filter out I'd like to change requested .shtml files to .html, how?
thanks
thanks

<Directory "httpd local directory path"> RewriteEngine on RewriteBase / RewriteRule ^(.*)\.shtml$ $1.html [R=permanent] </Directory>
RewriteEngine on RewriteBase / RewriteRule ^(.*)\.shtml$ $1.html [R=permanent]
RewriteEngine on RewriteBase / RewriteRule ^(.*)\.shtml$ $1 [C,E=WasSHTML:yes] RewriteCond %{REQUEST_FILENAME}.html -f RewriteRule ^(.*)$ $1.html [S=1,R] RewriteCond %{ENV:WasSHTML} ^yes$ RewriteRule ^(.*)$ $1.html
Comment