1

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でそれを行うことができますか

4

1 に答える 1

0

これで十分です。

# 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]
于 2012-10-08T18:29:59.477 に答える