I have php wesite using following url, http://example.com/subfolder/category
Now, i want to remove "subfolder" from url using php, but there can be multiple categories which can come and i dont want to write every category condition in .htaccess file?
Thus it will be like, if someone calls url like http://example.com/category, it will be redirected to file in "subfolder" but "subfolder" wont appear in url like this, {host_name}/category. Can this be done?
Example: {domain}/subfolder/category => {domain}/category
Thus subfolder will be removed.
Please help. Thanks in advance.