URLを変更したい
から
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でそれを行うことができますか
URLを変更したい
から
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でそれを行うことができますか
これで十分です。
# 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]