您好,登錄后才能下訂單哦!
這篇文章主要介紹了nginx偽靜態規則怎么定義的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇nginx偽靜態規則怎么定義文章都會有所收獲,下面我們一起來看看吧。
1、nginx偽動態劃定規矩
rewrite ^(.*)/tags.html $1/tags.php; rewrite ^(.*)/tags/(.*)-1.html $1/tags.php?/$2/$3;
或
rewrite ^([^\.]*)/tags.html $1/tags.php; rewrite ^([^\.]*)/tags/(.*)-([0-9]+).html $1/tags.php?/$2/$3;
2、.htaccess文件偽音訊規定
RewriteBase / RewriteRule ^tags\.html$ /tags.php$1 RewriteRule ^tags/(.*)-([0-9]+).html$ /tags.php?/$1/$2
3、IIS下網站.config文件,偽消息規則:
<rule name="Imported Rule tags 1"> <match url="^(.*/)*tags.html$" ignoreCase="false" /> <action type="Rewrite" url="{R:1}/tags.php" /> </rule>
<rule name="Imported Rule tags 2"> <match url="^(.*/)*tags/([^-]+)-([0-9]+).html$" ignoreCase="false" /> <action type="Rewrite" url="{R:1}/tags.php\?/{R:2}/{R:3}" appendQueryString="false" /> </rule>
4、httpd.ini 文件偽動態規定
RewriteRule ^(.*)/tags\.html $1/tags\.php RewriteRule ^(.*)/tags/(.*)-([0-9]+).html $1/tags\.php\?$2/$3
關于“nginx偽靜態規則怎么定義”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“nginx偽靜態規則怎么定義”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。