我想將我的網址htaccess的短我的網址
從
accounts.php?cat=cr7-stability&subcat=cr7-atonic-gold-trading
到
accounts/cr7-stability/subcat=cr7-atonic-gold-trading
我創建htaccess文件的代碼
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)$ accounts.php?cat=$1&subcat=$2 [L]
但是當我測試我得到沒有c的舊網址變更
PS。我正在使用在線服務器測試子域 http://cr7.hostato.com/accounts.php?cat=cr7-stability&subcat=cr7-atonic-gold-trading
請嘗試清除緩存。 – Akintunde007
我做過了,並且我在不同的瀏覽器上進行了檢查 –
當您在瀏覽器中輸入新的URL時會發生什麼?你的規則是否重寫了它? – starkeen