-3
我的網站有問題,我無法查看viewprofile.php
。找不到:在此服務器上找不到請求的URL /viewprofile.php
這是我的.htaccess
文件。
RewriteEngine on
RewriteRule (.*)-(.*).htm$ viewprofile.php?id=$1
RewriteRule (.*).htm$ viewprofile.php?id=$2
RewriteRule viewads(.*)\.htm$ viewads.php?id=$1
RewriteRule (.*)&(.*)\.htm$ homeads.php?id=$2
RewriteRule (.*).htm$ profile_city.php?id=$1
RewriteRule (.*).htm$ profile_cast.php?id=$1
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
ErrorDocument 404 /viewprofile.php
RewriteEngine on
RewriteCond %{HTTP_HOST} ^waytonikah.com [NC]
RewriteRule ^(.*)$ http://waytonikah.com/$1 [L,R=301]
如果您能給我們一些代碼,然後我們會 – Gautam3164
我想我已經看到了同樣的問題昨天.. –
試塗放規則之前的'^':'RewriteRule ^(。*)。htm $ viewprofile.php?id = $ 2'然後嘗試查看url http://waytonikah.com/test.htm是否正常工作 –