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 からすべての文字を削除するために htaccess に追加できる mod_rewrite ルールを知っている人はいますか?
AZ、az、0-9、-、?、=、&、:、/
このルールはどうですか:
RewriteRule ^(.*)[^A-Za-z0-9\-\?=&:/](.*)$ $1$2 [L]