我正在我的網站上工作。我已經安裝了Joomla並讓我的網站運行。問題是我的網址是http://www.example.com/example.com/index.php/information/aboutus而不是www.example.com/information/aboutus 我的網站與其他網站一起安裝在共享託管服務器上,所以它在名爲「\ www.example.com」的文件夾中服務器。另外,我的網站速度很慢,我建議啓用啓用gzip壓縮並利用瀏覽器緩存。我該如何解決我沒有這麼搜索引擎友好的網址?
這裏的.htacees文件的內容
RewriteCond %{HTTP_HOST} ^example.com$
RewriteCond %{REQUEST_URI} !^/example.com/
RewriteRule (.*) /example.com/$1 [last]
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteCond %{REQUEST_URI} !^/example.com/
RewriteRule (.*) /example.com/$1 [last]
Rues應該工作,是什麼問題? – anubhava