- 締切済み
httpd.confのmod_rewite設定
下記のようにMAMPのhttpd.confの一番下にmod_rewite設定のため行を追加したのですが 動作しません。 ※ちなみにURLをmod_rewite設定で http://localhost/○○○/index.php?category=△△△△△ を http://localhost/○○○/△△△△△ にする予定です。 よろしくお願いいたします。 RewriteEngine On RewriteCond %{REQUEST_URI} ^/○○○○/?(.*)$ RewriteCond %{QUERY_STRING} (^|&)category=([^&]+)($|&) RewriteRule ^([0-9a-zA-Z_-]+)/([0-9a-zA-Z_-]+)/([0-9a-zA-Z_-]+)$ index.php?category=$1 [QSA,PT] RewriteLog tmp/rewrite.log RewriteLogLevel 3
- みんなの回答 (2)
- 専門家の回答
補足
notnot様 ご教示ありがとうございます。 <IfModule mod_rewrite.c> を外し何も囲んでいない状態で ーーーーーーーーー RewriteEngine On RewriteCond %{QUERY_STRING} (^|&)category=([^&]+)($|&) RewriteRule ^○○○/index.php$ /○○○/%2? ーーーーーーーーー をhttp.conf最下部に設置し直しました。 その後、リンクにパラメータの付いた <a href="./index.php?category=△△△△△"> を設置し叩きましたが反応しませんでした。 ※ちなみに下記のやり方で試したところ リンクを押した瞬間URLが短縮される動きがありましたがカスタマイズがわからず。。。 http://neo-shocker.com/code/2011/07/htaccess-rewrite-dynamic-url-static-url.html