Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
だから私は書き直そうとしています:
url.com/edit_note.php?noteid=243
に
url.com/n/243
私はこれを使用しています:
RewriteEngine On RewriteRule /n/(.*)$ /edit_note.php?noteid=$1
これが機能しない理由について何かアイデアはありますか?
これを試して:
RewriteEngine On RewriteRule ^n/([^/]*)$ /edit_note.php?noteid=$1 [L]
使用する:
RewriteEngine On RewriteRule ^n/(.*)$ /edit_note.php?noteid=$1 [L]