I currently have such a URL
domain / index.php? Cat = مال_وأعمال
I want to set everything up so that our marketing professionals can post a URL, like
domain / مال_وأعمال
I have tried several solutions, including:
mod_rewrite - the problem with this approach is that it becomes a huge .htaccess file, since we need to write a rule for each category.
RewriteMap is pretty close, since I could query the database to create a map file for output. However, since then I found out that we do not have access to httpd.conf.
index.php - I tried to run everything through our index.php file, which works, but does not support a browser friendly URL for SEO purposes.
I hope someone has another idea that could help, I would really appreciate it. If you have a link to something on the Internet that helps, that will be great too.
php.htaccess mod-rewrite seo-friendly
source
share