Forum Moderators: phranque
I am using the following code,but page is loading only with static html content(not loading php dinamic informations from database).
My webhosting has confirmed htacces is enabled and is working fine in Apache.
My index homepage is loading normally with informations from database.
I am missing something ?
Options +FollowSymlinks
RewriteEngine onRewriteRule ^(.*).htm product.htm?doc_id=$1
# -FrontPage-
IndexIgnore .htaccess */.?* *~ *# */HEADER* */README* */_vti*
AddType application/x-httpd-php .html .htm
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
RewriteCond $1 !^product$
RewriteRule ^(.*)\.htm$ product.htm?doc_id=$1 [L]
Jim