谈谈url重写

来源:互联网 发布:邓肯巅峰数据 编辑:程序博客网 时间:2024/06/05 14:19
【Apache】
  1. httpd.conf配置文件中加载了mod_rewrite.so模块 
  2. AllowOverride None 将None改为 All
  3. 把下面的内容保存为.htaccess文件放到应用入口文件的同级目录下 
    1. <IfModule mod_rewrite.c>
    2. RewriteEngine on
    3. RewriteCond %{REQUEST_FILENAME} !-d
    4. RewriteCond %{REQUEST_FILENAME} !-f
    5. RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
    6. </IfModule>

原创粉丝点击