'Use ReWriteEngine to redirect user profile page to a physical page

Good day,

I want to rewrite my user id URL to a physical page on my website, see URL structure below:

From: http://localhost:8888/report.mark1/user.php?id=341

To: http://localhost:8888/report.mark1/341

This is the .htaccess file code:

ReWriteEngine On
RewriteRule ^report.mark1([^/.]+)?$ /user.php?id=$1 [L]

I'm I missing something?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source