.htaccess mod_rewrite explanation

后端 未结 1 633
情深已故
情深已故 2021-01-21 22:10

I\'ve been trying to get this mod rewrite thing down. Basically I want:

  • removed.com/WineGlass/Vin.php
  • removed.com/Chandelier/Auto.php

To be

1条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-21 22:31

    Use this rule in your DOCUMENT_ROOT/.htaccess file:

    Options +FollowSymLinks -Multiviews
    RewriteEngine On
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^([^/]+)/([^.]+\.php)$ /news.php?cat=$1&post=$2 [L,QSA]
    

    0 讨论(0)
提交回复
热议问题