Hi! Can i add friendly url support?
The dynamic url is: http://host.com/?dir=directory/subdirectory
What I want: http://host.com/directory/subdirectory
I read documentation and wrote following rule in .htaccess:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^([\/\A-Za-z0-9-]+)/?$ /?dir=$1 [L]
It works fine in this tester http://htaccess.madewithlove.be/ but not on directory listener. I think I need reversed rule. Could you explain me, how I can solve this problem, please?
Hi! Can i add friendly url support?
The dynamic url is: http://host.com/?dir=directory/subdirectory
What I want: http://host.com/directory/subdirectory
I read documentation and wrote following rule in .htaccess:
It works fine in this tester http://htaccess.madewithlove.be/ but not on directory listener. I think I need reversed rule. Could you explain me, how I can solve this problem, please?