我想從這個如何重寫URL中的.htaccess文件
http://localhost/hiraniconfigmgr/subCategoryList.php?category=Test
到
http://localhost/hiraniconfigmgr/subCategoryList/Test
我有嘗試這個代碼,它工作正常的網址,但它阻止JS或CSS文件
RewriteCond %{REQUEST_URI} ((.*)/(.*))
RewriteRule ^(.*)/(.*)$ $1.php?category=$2
爲隱藏文件擴展名,甚至我已經使用的代碼工作正常代碼belowe
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php