1
我必須重寫以下URL,是否有人可以建議將執行此操作的.htaccess文件的內容。.htaccess沒有查詢字符串變量的URL重寫
例如:
example.com/retrieve_cat.php?subcat=364&c=134
需求的樣子:
example.com/category/subcategory/
是否有可能改寫這個?
我必須重寫以下URL,是否有人可以建議將執行此操作的.htaccess文件的內容。.htaccess沒有查詢字符串變量的URL重寫
例如:
example.com/retrieve_cat.php?subcat=364&c=134
需求的樣子:
example.com/category/subcategory/
是否有可能改寫這個?
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase/
RewriteRule ^retrieve_cat.php?subcat=(.*)&c=(.*) $2/$1/