私はこのURLを持っています
http://mysite.com/profile?id=78
こんな感じに変えたかった
http://mysite.com/78/
どうすればいいですか?
htaccessにこのコードがありますが、機能していないようです。
RewriteRule ^id/([a-zA-Z0-9]+)/$ profile?id=$1
親切にこれについて私を案内してください。
あなたの助けは大いに感謝され、報われるでしょう。
ありがとう!
私はこのURLを持っています
http://mysite.com/profile?id=78
こんな感じに変えたかった
http://mysite.com/78/
どうすればいいですか?
htaccessにこのコードがありますが、機能していないようです。
RewriteRule ^id/([a-zA-Z0-9]+)/$ profile?id=$1
親切にこれについて私を案内してください。
あなたの助けは大いに感謝され、報われるでしょう。
ありがとう!
RewriteBase
ディレクティブを使用する必要があると確信しています
RewriteEngine On
RewriteBase /
# Use the following rule if you want to make the page like a directory
RewriteRule ^u/(!(profile.php))$ u/$1/ [R=301,L]
# The following rule does the rewrite.
RewriteRule ^u/(!(profile.php))/$ profile.php?name=$1 [L]
これは に書き換えhttp://mysite.com/u/john/
られhttp://mysite.com/profile?name=john
ます。
編集これが新しい答えです
RewriteEngine On
RewriteBase /
# Use the following rule if you want to make the page like a directory
RewriteRule ^u/(!(profile.php))$ u/$1/ [R=301,L]
# The following rule does the rewrite.
RewriteRule ^u/(!(profile.php))/$ profile.php?name=$1 [L]
# The following rewrite the other way round:
RewriteCond %{REQUEST_URI} ^/profile.php
RewriteCond %{THE_REQUEST} ^(GET|POST|HEAD|TRACE)\ /profile.php
RewriteCond %{QUERY_STRING} name=([^&]+)
RewriteRule ^profile.php$ u/%1? [R=301,L]
あなたが持っているものは正しいように見えます。ただし、リクエストは再度処理される可能性があります。
[L]
フラグを追加し、正確なファイルにマップすることで、これを回避できます。例えば:
RewriteEngine On
RewriteRule ^name/([a-zA-Z0-9]+)/?$ profile.php?name=$1 [L]
注:末尾のスラッシュもオプションにしました。そして私は明示的にRewriteEngine On
.htaccess
これをファイルで使用する必要があります。
RewriteEngine On
RewriteRule ^([^/]*)/$ /profile?name=$1 [L]
私はこれを使用して生成しました:http://www.generateit.net/mod-rewrite/
私はこの方法で解決しました:
RewriteEngine On
RewriteBase /
# Use the following rule if you want to make the page like a directory
RewriteRule ^(v)$ /$1/
# The following rule does the rewrite.
RewriteRule ^(.+)/$ profile.php?id=$1
# The following rewrite the other way round:
RewriteCond %{REQUEST_URI} ^/profile.php
RewriteCond %{THE_REQUEST} ^(GET|POST|HEAD|TRACE)\ /profile.php
RewriteCond %{QUERY_STRING} id=([^&]+)
RewriteRule ^profile.php$ %1?