removing section & product from urls

耗尽温柔 提交于 2019-12-04 06:22:37

问题


Our site system produces urls like this

section.php/4/1/offers-events

product/12/surprise-deal

Right now we use this to take out the .php

Options +SymlinksIfOwnerMatch +MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*?).php/(.*?)$ $1.php?$2 [NC]

Would really like to be able to take out 'section' and 'product' from the url or be able to change those names to something more seo beneficial for the site.

Thanks Peter

来源:https://stackoverflow.com/questions/28545878/removing-section-product-from-urls

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!