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 的帮助。我需要将文件的 url 重写http://mydomain.com/news.php?l=world为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]