を変更するには:htaccessファイルは、私がURLを持っているURL
また、私は私がしようとしてきた'で' フォルダにある.htaccessファイルを修正しています
http://example.com/at
and want to get:
http://example.com/at/index.php?at=
http://example.com/at/
and want to get:
http://example.com/at/index.php?at=
http://example.com/at/1asSde
and want to get:
http://example.com/at/index.php?at=1asSde
:
RewriteEngine On
RewriteRule (.*)$ index.php?at=$1 [QSA,L]
後でサイトのスクリプトを実行しているときにエラーが発生しています。
正しい結果を得るために代わりに何を試すことができますか?
ありがとうございました。
あなたが書き換え条件 –
を逃していますあなたは '$ _GET ['at']'を印刷しようとしましたか? – AndersTornkvist
どのような種類のエラー? –