1

私はこのURLを持っています

http://mysite.com/profile?id=78

こんな感じに変えたかった

http://mysite.com/78/

どうすればいいですか?

htaccessにこのコードがありますが、機能していないようです。

RewriteRule ^id/([a-zA-Z0-9]+)/$ profile?id=$1

親切にこれについて私を案内してください。

あなたの助けは大いに感謝され、報われるでしょう。

ありがとう!

4

4 に答える 4

3

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]
于 2012-07-03T03:13:06.963 に答える
1

あなたが持っているものは正しいように見えます。ただし、リクエストは再度処理される可能性があります。

[L]フラグを追加し、正確なファイルにマップすることで、これを回避できます。例えば:

RewriteEngine On

RewriteRule ^name/([a-zA-Z0-9]+)/?$ profile.php?name=$1 [L]

注:末尾のスラッシュもオプションにしました。そして私は明示的にRewriteEngine On

于 2012-07-03T03:11:03.010 に答える
0

.htaccessこれをファイルで使用する必要があります。

RewriteEngine On
RewriteRule ^([^/]*)/$ /profile?name=$1 [L]

私はこれを使用して生成しました:http://www.generateit.net/mod-rewrite/

于 2012-07-03T03:10:43.447 に答える
0

私はこの方法で解決しました:

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?
于 2012-07-03T07:31:24.067 に答える