ホームページ >バックエンド開発 >PHPチュートリアル >疑似静的について質問があります
疑似静的について質問があります
Whois クエリを実行していたとき、それは疑似静的でした
http://whois.hangye5.com/womai.cn
RewriteEngine の
Rewritebase /
ErrorDocument 404 / 404.html
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$index.php?domain=$1 [QSA,PT,L]
使用これは大丈夫です
しかし、ここでもう 1 つ疑似静的ファイルを作成したいと思います
whois.hangye5.com/sitemaps/sitemap1.html
whois.hangye5.com/sitemaps/sitemap2.html
whois.hangye5.com /sitemaps/ sitemap3.html
こんな感じ
やり方がわからない、コンテンツを追加する方法がわからない
追加したものに何か問題があります。
あなたの元の記述方法に基づいて、私はおおよそのことしか書くことができません
^(.*)/(w+)/(w+ ).html$index .php?domain=$1&p1=$2&p2=$3
リンクによると whois.hangye5.com/sitemaps/sitemap1.html
p1=sitemaps, p2=sitemap1
p1、p2 は対応するパラメータですアプリケーションを自分で変更します
http://whois.hangye5.com/sitemaps/sitemap.php?domain=1
偽が存在しない前はこのようでした
RewriteEngine on
ErrorDocument 404 /404.html
#RewriteCond %{REQUEST_FILENAME} !- d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ ./index.php?domain=$1 [QSA,PT,L]
RewriteRule ^(.*) /(w+)/(w+) .html$ /sitemaps/sitemap.php?domain=$1&p1=$2&p2=$3
これは違う気がします
これを試してみてください
RewriteRule ^(.*)/w+/[A-za -z]+(d+ ).html$index.php?domain=$2
ErrorDocument 404 /404.html の RewriteEngine
#RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ (.*)$ . /index.php?domain=$1 [QSA,PT,L]
RewriteRule ^(.*)/w+/[A-za-z]+(d+).html$ /sitemaps/sitemap .php?domain=$2
これは機能しません
書き換え前: http://whois.hangye5.com/sitemaps/sitemap.php?domain =1
書き換え後 :http://whois.hangye5.com/sitemaps/sitemap1.php
RewriteRule ^(.*)/sitemaps/sitemap(d+).html$ $1/sitemaps/sitemap.php?domain=$2
もう一度試して、うまくいかなかったら、何もすることができません...
書き換え後: http://whois.hangye5.com/sitemaps/sitemap1
RewriteRule ^(.*)$ ./index.php?domain=$1 [QSA,PT, L]
このルールは、実際には存在しないすべてのページを削除します。 Index.php
その L は書き換えルールの処理を終了することを意味します。つまり、後続のルールが正常に一致する限り、それらは再度チェックされません (リソースの無駄を避けるため)
したがって、この記事は前に書く必要があります
RewriteRule ^(.*)/(w+)/(w+).html$ /sitemaps/sitemap.php?domain=$1&p1=$2&p2=$3
RewriteCond %{REQUEST_FILENAME } -d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)/sitemaps/sitemap(d+).html$ $1/sitemaps/sitemap.php?domain=$2
RewriteRule ^(.*)$ Index.php?domain=$1 [QSA,PT,L]
これは機能しません。おそらく最後のものが次のものに影響を与えたためです
ErrorDocument 404 /404.html の RewriteEngine
RewriteRule ^sitemaps/ sitemap([0-9 ]+).html$ /sitemaps/sitemap.php?domain=$1 [L] RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*) $index.php?domain =$1 [QSA,PT,L]
以上です