I am new one, I learn .htaccess. I want to customize my URL
from
index.php?page=mobile
to
index/page/mobile
I used this code but it doesn't work:
RewriteEngine on
RewriteRule ^index/([0-9]+)/?$ index.php?page=$1 [NC,L] # Handle product requests
and
RewriteEngine on
RewriteRule ^index/([^/.]+)/?$ index.php?page=$1 [L]
^index/([^/.]+)/?$won't matchindex/page/mobile. That expression only goes one level deep. Are you familiar with regexes?