0
任何人都可以幫我改寫上述鏈接,即時通訊做定製腳本,但現在問題來改寫這個,即時通訊開始htaccess的像這樣的東西......htaccess的,URL重寫
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^([^/]*)$ /index.php?page=$1 [L]
RewriteRule ^([^/]*)$ /index.php?query=$1 [L]
RewriteRule ^([^/]*)/([^/]*)$ /index.php?query=$1&page=$2 [L]
但這不行,我有服務器錯誤500 ...
這就是我需要重寫..
http://site.com/index.php?page=1 ==> http://site.com/1
http://site.com/index.php?type=news&page=1 ==> http://site.com/news/1
http://site.com/index.php?query=searching ==> http://site.com/searching
http://site.com/index.php?query=searching&page=1 ==> http://site.com/searching/1
如果你有一個500,你需要查看你的服務器的錯誤日誌來找出錯誤是什麼。 –
我在共享主機上沒有權限檢查此日誌 – user1405674
您的共享主機不會在您自己的空間中放置錯誤日誌,僅限於您自己的虛擬主機?這通常是完成的。 –