,當我嘗試去http://localhost/themobilesapp那麼它仍然重定向我的specification.php頁面沒有進行重定向我的的index.phphtaccess並不重定向我index.php頁面或默認頁
現在,我要通過輸入我的主頁http://localhost/themobilesapp/index.php
這是我的完整htaccess代碼。
Options +FollowSymLinks -MultiViews -Indexes
<IfModule mod_rewrite.c>
DirectoryIndex index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
ErrorDocument 404 404error.php
RewriteRule ^([A-Za-z0-9-]+)?$ specification.php?url=$1 [L]
RewriteRule ^news/([A-Za-z0-9-]+)?$ news.php?url=$1 [L]
</IfModule>
如何通過鍵入http://localhost/themobilesapp重新引導它的index.php?
它重定向* HTTP://本地主機/ themobilesapp *索引頁。在主頁上有很多頁面鏈接,然後將它重定向到* index.php * –
然後刪除'RewriteRule ^(。*)$ index.php [L]'行;並保持修改的規格線。 –
我不添加任何東西。我只從** RewriteRule ^([A-Za-z0-9 - ] +)$ specification.php?url = $ 1 [L]中刪除**?** **然後我的代碼重定向** index.php ** –