Jump to content

apache htaccess problem with .html


dsp77

Recommended Posts

Hello, I have the following htaccess file

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([^/]*)\.html$ index.php?page=$1 [L]
RewriteRule (.*)-(.*)\.html$ /index.php?page=$1&session=$2

 

the problem is that the second rule does not work with .html , if i change the extension to .htm it works and i have no ideea why.

EDIT: a moderator please move topic i didnt saw the mod_rewrite section.

Link to comment
https://forums.phpfreaks.com/topic/242838-apache-htaccess-problem-with-html/
Share on other sites

The first rule meets more conditions that the second rule, thus will away run instead of the second rule, also its flagged as the last rule..

 

try swapping them

ie

RewriteRule (.*)-(.*)\.html$ /index.php?page=$1&session=$2 [L]
RewriteRule ^([^/]*)\.html$ index.php?page=$1 

 

note the first will be the last if meet, if not then second should run

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.