im trying to make a revolving banner ad show up on my page (using php) but I dont want to convert my pages to html for google ranking reasons etc... the current site is www.smftutorials.com. I edited the .htaccess to include these lines: RemoveHandler .html .htm AddType application/x-httpd-php .php .htm .html Code (markup): this is the root folder for the testing page: www.smftutorials.com/testing the main page is named template.html the revolving banners arent showing though??? hmmmm what am I doing wrong?
try this -> AddType application/x-httpd-php .htm .html RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.html -f RewriteRule ^(.*)$ $1.html instead of what you had. can you show an example of where you are doing this? or the code