這是什麼?爲網站創建htaccess
轉換:
http://name.com/pro/weblog/index.php?rayan_cat=23&rayan_cat_in=25
到:
http://name.com/pro/weblog/23/25/
如果index.php文件的時候還不知道
這是什麼?爲網站創建htaccess
轉換:
http://name.com/pro/weblog/index.php?rayan_cat=23&rayan_cat_in=25
到:
http://name.com/pro/weblog/23/25/
如果index.php文件的時候還不知道
這就是所謂的URL重寫。請參閱:http://httpd.apache.org/docs/current/mod/mod_rewrite.html
RewriteEngine On
RewriteCond %{HTTP_HOST} ^http://Yoururl/
RewriteRule (.*) http://yoururl//$1 [R=301,L]
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)/([0-9]+)$ index.php?rayan_cat=$1&rayan_cat_in=$2
RewriteRule ^([a-zA-Z0-9_-]+)/([0-9]+)/$ index.php?rayan_cat=$1&rayan_cat_in=$2
更換您的URL和文件的.htaccess保存在根文件夾
現在使用GET方法可以獲取參數值。
if index.php時間未知 – saeed 2011-03-10 10:40:19