Ticket #292 (closed defect: fixed)

Opened 5 months ago

Last modified 5 months ago

Cannot browse tag 'rss' because of RewriteRule mismatch

Reported by: eavdmeer Assigned to: nobody
Priority: normal Milestone: 0.9.1
Component: core Version: 0.9.0
Severity: normal Keywords:
Cc: Patch Included: 1
Review Stage: accepted

Description

When browing a tag 'rss' (http://yoursite/tag/rss) a mismatch occurs with the RewriteRule?:

RewriteRule? (([A-Za-z0-9])[A-Za-z0-9]+)\/rss\/?$ mod/newsclient/static.php?username=$1&userref=$2&type=profile

because this rule is placed earlier in the .htaccess file than the one that should match:

RewriteRule? tag\/(.+)\/?$ search/all.php?tag=$1 [L]

I've solved this in the attached patch by moving the tag matches up.

Attachments

patch.tagrss (1.3 kB) - added by eavdmeer on 01/29/08 14:21:29.

Change History

01/29/08 14:21:29 changed by eavdmeer

  • attachment patch.tagrss added.

01/29/08 18:20:46 changed by ewout

  • status changed from new to closed.
  • resolution set to fixed.
  • review_stage changed from unreviewed to accepted.

Fixed in r1534. Thank you!