2012-11-26 45 views
0

是否有可能在modignature中使用mod-rewrite刪除2個uri段並仍然保持功能?使用Mod_Rewrite刪除URI段。 Codeigniter

我不想使用codeigniter路由,因爲它們似乎不是我需要的。

我有很長的URL:http://site.com/product/details/3/royal-blue-choir-stole

我想使用國防部重寫更改爲:http://site.com/royal-blue-choir-stole

是否有可能保留的功能,但是重寫URL,類似於如何開源CMS系統做到了嗎?

我當前htaccess文件只是有代碼從URL中刪除index.php文件:

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule .* index.php/$0 [PT,L] 

回答

0

嘗試這樣的事情...

RewriteRule ^(.*)$ index.php?product/details/$0 [PT,L]