【发布时间】:2012-10-09 02:29:59
【问题描述】:
我想换个网址
来自
http://www.example.com/option=com_content&view=propertyshow&pid=47610
到
http://www.example.com/index.php?option=com_content&view=propertyshow&pid=47610
如何在 .htaccess 中做到这一点
【问题讨论】:
标签: .htaccess
我想换个网址
来自
http://www.example.com/option=com_content&view=propertyshow&pid=47610
到
http://www.example.com/index.php?option=com_content&view=propertyshow&pid=47610
如何在 .htaccess 中做到这一点
【问题讨论】:
标签: .htaccess
应该这样做。
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule ^(.*)$ index.php?$1 [PT,L]
【讨论】: