2017-02-26 54 views
2

這是頁面的網址。 http://www.themobilesapp.com/phones.php?title=Apple使用htaccess轉換網址...刪除並添加文字

我想稍微改變一下這個URL。 我想要這樣的網址。 http://www.themobilesapp.com/phones/Apple

爲此我的htaccess代碼是這樣的。

RewriteEngine On 
RewriteRule ^phones/([A-Za-z0-9]+)?$ phones.php?title=$1 

但這不適用於我。

+0

「不工作」是什麼意思? htaccess位於何處? – starkeen

+0

先生,代碼無法正常工作,但url不會像這樣轉換。 –

+0

但是這段代碼正在爲這個網址工作。 我可以改變這個網址** http://www.themobilesapp.com/phones.php?title=蘋果** 轉換成此網址 ** http://www.themobilesapp.com/Apple** 使用此功能htaccess代碼 RewriteEngine在 RewriteRule ^([A-Za-z0-9] +)?$ phones.php?title = $ 1 但我想我的網址,因爲我討論。我的htaccess是所有文件所在的位置。所有在同一個文件夾中 –

回答

0

您想將http://www.themobilesapp.com/phones/Apple重定向到http://www.themobilesapp.com/phones.php?title=Apple

下的.htaccess規則使之成爲現實:

RewriteEngine On 
RewriteRule ^phones/(.*)$ /phones.php?title=$1 [R=301,L,QSA] 

我測試此代碼與htaccess.mwl.be