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.
htaccess について教えてください。http://mydomain.com/news.php?l=worldファイルのURL を に書き換える必要がありますnews/cat/world。ありがとうございました
http://mydomain.com/news.php?l=world
news/cat/world
mod_rewrite と .htaccess を有効にしてからhttpd.conf、このコードをディレクトリの.htaccess下に配置します。DOCUMENT_ROOT
httpd.conf
.htaccess
DOCUMENT_ROOT
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteRule ^news/cat/([^/]+)/?$ /news.php?l=$1 [L,NC,QSA]