2017-04-08 127 views
1

我想將我的網址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

+0

請嘗試清除緩存。 – Akintunde007

+0

我做過了,並且我在不同的瀏覽器上進行了檢查 –

+0

當您在瀏覽器中輸入新的URL時會發生什麼?你的規則是否重寫了它? – starkeen

回答

2
RewriteRule ^accounts/([^/]+)/([^/]+)/?$ accounts.php?cat=$1&subcat=$2 [L] 
+0

謝謝,但沒有改變!可能需要時間才能生效? –

+0

設置鏈接title

+1

感謝您的編輯@starkeen –