誰でも上記のリンクを書き直すのを手伝ってくれます。カスタムスクリプトを作成しましたが、これを書き直すのに問題があります。次のようなものでhtaccessを開始します...
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^([^/]*)$ /index.php?page=$1 [L]
RewriteRule ^([^/]*)$ /index.php?query=$1 [L]
RewriteRule ^([^/]*)/([^/]*)$ /index.php?query=$1&page=$2 [L]
しかし、これは機能しません、私はサーバーエラー500を持っています...
これは私が書き直す必要があるものです。
http://site.com/index.php?page=1 ==> http://site.com/1
http://site.com/index.php?type=news&page=1 ==> http://site.com/news/1
http://site.com/index.php?query=searching ==> http://site.com/searching
http://site.com/index.php?query=searching&page=1 ==> http://site.com/searching/1