Я на Apache 2, и я бы знал, если мой htacces правильный
мой URL, например:
localhost/test/boutique/index.php
localhost/test/boutique/index.php/language,en
localhost/test/boutique/index.php/Products/Description/products_id,1
localhost/test/boutique/index.php/Products/Description/products_id,2/language,fr
Каков наилучший подход для хорошего URL, как указано выше
Предположим, что index.php должен отключиться, чтобы получить нечто подобное
localhost/test/boutique/Products/Description/products_id,1
Я пробую это, но это не работает
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ http://localhost/test/boutique/index.php/$1 [PT,L]